forked from nrwl/nx-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.35 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.35 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "nx-example",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"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",
"dep-graph": "nx dep-graph",
"help": "nx help",
"nx": "nx",
"postinstall": "ngcc --properties es2015 browser module main && node decorate-angular-cli.js",
"workspace-generator": "nx workspace-generator"
},
"private": true,
"dependencies": {
"@angular/animations": "13.3.2",
"@angular/common": "13.3.2",
"@angular/compiler": "13.3.2",
"@angular/core": "13.3.2",
"@angular/forms": "13.3.2",
"@angular/platform-browser": "13.3.2",
"@angular/platform-browser-dynamic": "13.3.2",
"@angular/router": "13.3.2",
"@emotion/babel-plugin": "11.9.2",
"@emotion/react": "11.9.0",
"@emotion/styled": "11.8.1",
"@ngrx/component-store": "13.0.1",
"@ngrx/effects": "13.0.1",
"@ngrx/entity": "13.0.1",
"@ngrx/router-store": "13.0.1",
"@ngrx/store": "13.0.1",
"@nrwl/angular": "14.0.5",
"core-js": "^2.5.4",
"document-register-element": "1.13.1",
"normalize.css": "^8.0.1",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-is": "18.0.0",
"react-router-dom": "6.3.0",
"react-test-renderer": "18.0.0",
"rxjs": "~6.5.5",
"tslib": "^2.0.0",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "13.3.2",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cli": "13.3.2",
"@angular/compiler-cli": "13.3.2",
"@angular/language-service": "13.3.2",
"@ngrx/store-devtools": "13.0.1",
"@nrwl/cli": "14.0.5",
"@nrwl/cypress": "14.0.5",
"@nrwl/devkit": "14.0.5",
"@nrwl/eslint-plugin-nx": "14.0.5",
"@nrwl/jest": "14.0.5",
"@nrwl/linter": "14.0.5",
"@nrwl/nx-cloud": "14.0.1",
"@nrwl/react": "14.0.5",
"@nrwl/web": "14.0.5",
"@nrwl/workspace": "14.0.5",
"@testing-library/react": "13.1.1",
"@types/jest": "27.4.1",
"@types/node": "14.14.33",
"@types/react": "18.0.1",
"@types/react-dom": "18.0.0",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"cypress": "^8.3.0",
"dotenv": "10.0.0",
"eslint": "8.12.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.4.0",
"fuzzy": "^0.1.3",
"inquirer": "^6.2.2",
"inquirer-autocomplete-prompt": "^1.0.1",
"jest": "27.5.1",
"jest-preset-angular": "11.1.1",
"netlify": "^2.4.8",
"nx": "14.0.5",
"prettier": "2.5.1",
"ts-jest": "27.1.4",
"ts-node": "9.1.1",
"typescript": "4.6.3"
}
}