-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "kombo",
"private": true,
"scripts": {
"build": "nx build",
"dev": "nx dev",
"dev:affected": "nx affected --target=dev",
"dev:all": "nx run-many --target=dev --all",
"format": "nx run format --project",
"format:affected": "nx affected --target=format",
"format:all": "nx run-many --target=format --all",
"lint": "nx run lint --project",
"lint:affected": "nx affected --target lint",
"lint:all": "nx run-many --target=lint --all",
"start": "nx start",
"typecheck": "nx typecheck",
"typecheck:affected": "nx affected --target=typecheck",
"typecheck:all": "nx run-many --target=typecheck --all"
},
"engines": {
"node": ">=16 <17"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"resolutions": {
"@types/react": "17.0.47"
},
"devDependencies": {
"@types/node": "^16.18.25",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"nx": "^16.1.3",
"nx-cloud": "^16.0.5",
"prettier": "^2.7.1",
"react": "17",
"react-dom": "17",
"storybook": "~7.0.10",
"typescript": "^4.9.4",
"vitest": "^0.25.3"
},
"dependencies": {
"tslib": "^2.3.0"
}
}