-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.51 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@workspace/root",
"private": true,
"type": "module",
"engines": {
"node": "19.0.0"
},
"scripts": {
"prepare-local": "./prepare.ts",
"prepare-ci": "./prepare.ts --ci",
"each": "turbo",
"format": "poetry run pre-commit run --hook-stage commit --all",
"lint": "poetry run pre-commit run --hook-stage manual --all",
"check-dependencies": "yarn install --check-cache",
"change:create": "changeset",
"change:version": "changeset version",
"change:publish": "yarn each build && changeset publish"
},
"packageManager": "yarn@4.0.0-rc.40",
"workspaces": [
".",
"packages/*"
],
"devDependencies": {
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.0",
"@changesets/types": "5.2.1",
"@types/node": "18.15.3",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"@yarnpkg/pnpify": "4.0.0-rc.40",
"eslint": "8.36.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"lint-staged": "13.2.0",
"prettier": "2.8.4",
"ts-node": "10.9.1",
"turbo": "1.8.3",
"typescript": "5.0.2",
"zx": "7.2.1"
},
"dependenciesMeta": {
"ts-node@10.9.1": {
"unplugged": true
}
},
"resolutions": {
"vite": "4.2.1"
}
}