-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.04 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "monorepo",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"try": "yarn build:web && yarn push",
"start": "nx serve symarhl --watch --liveReload",
"clean": "rimraf dist/apps",
"deploy": "yarn clean && yarn build && yarn push",
"build": "yarn build:api && yarn build:web && yarn build:web-server && yarn build:db",
"build:api": "nx build api --prod",
"build:db": "nx build db --prod",
"build:web": "nx build --prod",
"build:web-server": "nx build symarhl-server --prod",
"push": "cd dist && git add . && git commit -m \"script commit\" && git push && cd ../",
"test": "nx test",
"lint": "nx workspace-lint && nx lint --fix",
"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",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help"
},
"private": true,
"dependencies": {
"@material-ui/core": "^4.6.1",
"@reduxjs/toolkit": "^1.8.5",
"@types/node": "^12.12.11",
"async-mqtt": "^2.4.2",
"axios": "^0.21.2",
"cors": "^2.8.5",
"dayjs": "^1.11.5",
"document-register-element": "1.13.1",
"express": "4.17.1",
"http-status-codes": "^1.4.0",
"influx": "^5.5.1",
"morgan": "~1.9.1",
"node-schedule": "^1.3.2",
"react": "16.10.2",
"react-dom": "16.10.2",
"react-redux": "8.0.2",
"react-router-dom": "5.1.2",
"redux": "4.2.0",
"redux-thunk": "2.4.1"
},
"devDependencies": {
"@babel/preset-react": "7.0.0",
"@nrwl/cypress": "8.7.1",
"@nrwl/eslint-plugin-nx": "8.7.1",
"@nrwl/express": "^8.7.1",
"@nrwl/jest": "8.7.1",
"@nrwl/node": "8.7.1",
"@nrwl/react": "^8.7.1",
"@nrwl/web": "8.7.1",
"@nrwl/workspace": "8.7.1",
"@testing-library/react": "9.3.0",
"@types/cors": "^2.8.6",
"@types/debug": "^4.1.5",
"@types/express": "4.17.0",
"@types/jest": "24.0.9",
"@types/lodash": "^4.14.149",
"@types/morgan": "^1.7.37",
"@types/node-schedule": "^1.2.4",
"@types/react": "16.9.6",
"@types/react-dom": "16.9.2",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "5.1.0",
"@typescript-eslint/eslint-plugin": "2.3.2",
"@typescript-eslint/parser": "2.3.2",
"cypress": "3.4.1",
"dotenv": "6.2.0",
"eslint": "6.1.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "2.1.2",
"jest": "24.1.0",
"prettier": "1.18.2",
"rimraf": "^3.0.0",
"ts-jest": "24.0.0",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "4.8.3"
}
}