-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.1 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.1 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "fazio",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"pkg:plugin": "ng-packagr -p packages/nx-cross-ddd/package.json",
"build:plugin": "nx build nx-cross-ddd --with-deps",
"publish:plugin": "npm run build:plugin && cd dist/packages/nx-cross-ddd && npm publish && cd ../../.."
},
"private": true,
"dependencies": {
"@angular/core": "~13.2.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@angular/compiler-cli": "13.2.7",
"@nrwl/angular": "13.9.3",
"@nrwl/cli": "13.9.3",
"@nrwl/devkit": "13.9.3",
"@nrwl/eslint-plugin-nx": "13.9.3",
"@nrwl/jest": "13.9.3",
"@nrwl/js": "13.9.3",
"@nrwl/linter": "13.9.3",
"@nrwl/node": "13.9.3",
"@nrwl/nx-plugin": "13.9.3",
"@nrwl/react": "13.9.3",
"@nrwl/schematics": "^8.12.11",
"@nrwl/workspace": "13.9.3",
"@types/jest": "27.0.2",
"@types/node": "14.14.33",
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"dotenv": "10.0.0",
"eslint": "8.7.0",
"eslint-config-prettier": "8.1.0",
"jest": "27.2.3",
"ng-packagr": "13.2.1",
"nx": "13.9.3",
"postcss": "^8.3.9",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^10.1.1",
"prettier": "2.6.0",
"ts-jest": "27.0.5",
"ts-node": "~9.1.1",
"tslib": "^2.0.0",
"typescript": "4.5.5"
}
}