-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.37 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
{
"name": "@morgan-stanley/fdc3-web-monorepo",
"version": "1.0.0",
"license": "Apache-2.0",
"author": "Morgan Stanley",
"scripts": {
"clean": "nx run-many -t clean --excludeTaskDependencies && rimraf build tmp",
"lint-fix": "nx run-many -t lint-fix --excludeTaskDependencies",
"lint": "nx run-many -t lint --excludeTaskDependencies",
"build": "nx run-many -t build",
"test": "nx run-many -t test --excludeTaskDependencies",
"start": "nx run-many -t start --excludeTaskDependencies",
"generate-docs": "nx run-many -t generate-docs",
"prebuild-release": "npm run clean",
"build-release": "npm run lint -- --skip-nx-cache && npm run build -- --skip-nx-cache && npm run test -- --skip-nx-cache ",
"postbuild-release": "npm run generate-docs",
"release": "nx release"
},
"workspaces": [
"projects/*"
],
"devDependencies": {
"@nx/eslint": "20.4.6",
"@nx/jest": "20.4.6",
"@nx/web": "20.4.6",
"@nx/webpack": "20.4.6",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.11.5",
"copyfiles": "^2.4.1",
"eslint-plugin-header": "^3.1.1",
"jest": "^29.7.0",
"nx": "20.4.6",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"uuid": "^10.0.0",
"webpack-cli": "^5.1.4"
}
}