-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"private": true,
"workspaces": [
"packages/aesirx-bi-app",
"packages/aesirx-lib",
"packages/aesirx-uikit",
"packages/aesirx-sso"
],
"devDependencies": {
"nx": "18.3.4"
},
"resolutions": {
"@yarnpkg/parsers": "3.0.0-rc.48.1",
"tough-cookie": "^4",
"semver": "^7",
"jsdom": "^16",
"nth-check": "^2",
"postcss": "^8",
"json5": "^2",
"@types/react": "^18",
"path-to-regexp": "^3.3.0",
"elliptic": "^6.5.7",
"ws": "^8.18.0",
"d3-color": "^3"
},
"scripts": {
"prepare": "nx run aesirx-lib:build && nx run aesirx-sso:build && nx run aesirx-uikit:build && nx run-many -t build:lib --exclude aesirx-uikit aesirx-lib aesirx-bi-app",
"dev": "nx run-many -t dev -p aesirx-uikit aesirx-lib aesirx-bi-app",
"build": "nx run aesirx-bi-app:build",
"build:lib": "nx run aesirx-bi-app:build:lib",
"lint:check": "nx run aesirx-bi-app:lint:check",
"format:check": "nx run aesirx-bi-app:format:check",
"prepublishOnly": "nx run aesirx-bi-app:prepublishOnly"
}
}