-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (80 loc) · 2.34 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
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
{
"name": "nx-todos",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx run-many --target=serve --projects=todos,api --parallel=true",
"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",
"workspace-generator": "nx workspace-generator"
},
"private": true,
"dependencies": {
"axios": "0.27.2",
"clsx": "1.1.1",
"document-register-element": "1.13.1",
"express": "4.18.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.0.0",
"react-redux": "8.0.2",
"redux": "4.1.2",
"redux-thunk": "2.4.1",
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/preset-react": "7.8.3",
"@nrwl/cli": "14.5.10",
"@nrwl/cypress": "14.5.10",
"@nrwl/eslint-plugin-nx": "14.5.10",
"@nrwl/express": "14.5.10",
"@nrwl/jest": "14.5.10",
"@nrwl/node": "14.5.10",
"@nrwl/react": "14.5.10",
"@nrwl/web": "14.5.10",
"@nrwl/workspace": "14.5.10",
"@testing-library/react": "13.3.0",
"@types/express": "4.17.13",
"@types/jest": "27.4.1",
"@types/node": "18.7.5",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"axios-mock-adapter": "1.20.0",
"cypress": "9.5.0",
"dotenv": "16.0.0",
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "27.5.1",
"nx": "14.5.10",
"prettier": "2.7.1",
"react-test-renderer": "18.0.0",
"ts-jest": "27.1.4",
"ts-node": "10.9.1",
"typescript": "4.7.4"
}
}