-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.59 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
52
53
54
55
{
"name": "@ace/root",
"private": true,
"version": "1.0.0",
"devDependencies": {
"concurrently": "^7.2.2",
"husky": "^8.0.1",
"lerna": "^5.1.4",
"lint-staged": "^13.0.3",
"nx": "14.3.6",
"yarn-deduplicate": "^6.0.0"
},
"scripts": {
"build:website": "nx build @ace/website",
"build:admintable": "nx build @ace/admin-table",
"build:common": "nx build @ace/common",
"build": "nx run-many --parallel --target=build --all",
"clean": "nx run-many --parallel --target=clean --all",
"diff": "lerna diff",
"lint": "nx run-many --parallel --target=lint:fix --all",
"format": "nx format --all",
"new-version": "lerna version --conventional-commits --yes",
"nx:graph": "nx dep-graph",
"serve": "nx run-many --parallel --target=serve --all",
"start": "nx run-many --parallel --target=start --all",
"start:admintable": "concurrently \"nx start @ace/admin-table\" \"nx start @ace/common\"",
"start:website": "concurrently \"nx start @ace/website\" \"nx start @ace/common\"",
"start:common": "nx start @ace/common",
"start:functions": "nx start @ace/functions",
"test": "lerna run test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"yarn lint",
"git add"
]
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@reach/router": "^1.3.4",
"@testing-library/react": "^13.3.0",
"cross-env": "^7.0.3",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-lottie": "^1.2.3"
},
"workspaces": [
"packages/*"
]
}