This repository was archived by the owner on Oct 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.65 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.65 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
108
109
110
111
112
113
114
115
116
117
{
"name": "org-capacity-prototype",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"scripts": {
"affected": "nx affected",
"affected:apps": "nx affected:apps",
"affected:build": "nx affected:build",
"affected:dep-graph": "nx affected:dep-graph",
"affected:e2e": "nx affected:e2e",
"affected:libs": "nx affected:libs",
"affected:lint": "nx affected:lint",
"affected:test": "nx affected:test",
"dep-graph": "nx dep-graph",
"e2e": "nx e2e",
"format": "nx format:write",
"format:check": "nx format:check",
"format:write": "nx format:write",
"help": "nx help",
"lint": "nx workspace-lint && nx lint",
"nx": "nx",
"start": "nx serve",
"test": "nx test",
"update": "nx migrate latest",
"workspace-schematic": "nx workspace-schematic",
"build": "nx build org-capacity-service --configuration=production",
"service": "node dist/apps/org-capacity-service/main.js"
},
"dependencies": {
"@date-io/core": "^2.8.0",
"@date-io/date-fns": "^2.8.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/pickers": "^3.2.10",
"apollo-server-express": "^2.16.0",
"chart.js": "^2.9.3",
"chartjs-plugin-datalabels": "^0.7.0",
"compression": "^1.7.4",
"connected-react-router": "^6.8.0",
"date-fns": "^2.15.0",
"document-register-element": "1.13.1",
"graphql-iso-date": "^3.6.1",
"helmet": "^3.23.3",
"immutable": "^4.0.0-rc.12",
"jwks-rsa": "^1.8.1",
"mongoose": "^5.9.25",
"node-cache": "^5.1.2",
"oidc-client": "^1.10.1",
"passport": "^0.4.1",
"passport-anonymous": "^1.0.1",
"passport-jwt": "^4.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-is": "16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "5.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-observable": "^1.2.0",
"redux-oidc": "^4.0.0-beta1",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"seamless-immutable": "^7.1.4",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "7.9.0",
"@nrwl/cypress": "9.5.1",
"@nrwl/eslint-plugin-nx": "9.5.1",
"@nrwl/jest": "9.5.1",
"@nrwl/node": "9.5.1",
"@nrwl/react": "9.5.1",
"@nrwl/web": "9.5.1",
"@nrwl/workspace": "9.5.1",
"@testing-library/react": "10.4.1",
"@types/chart.js": "^2.9.23",
"@types/compression": "^1.7.0",
"@types/graphql-iso-date": "^3.4.0",
"@types/helmet": "0.0.47",
"@types/jest": "25.1.4",
"@types/mongoose": "^5.7.32",
"@types/node": "~8.9.4",
"@types/passport": "^1.0.4",
"@types/passport-anonymous": "^1.0.3",
"@types/passport-jwt": "^3.0.3",
"@types/react": "16.9.38",
"@types/react-dom": "16.9.8",
"@types/react-is": "16.7.1",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "5.1.5",
"@types/redux-mock-store": "^1.0.2",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.2",
"babel-jest": "25.1.0",
"cypress": "^4.1.0",
"dotenv": "6.2.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.0.4",
"jest": "25.2.3",
"prettier": "2.0.4",
"redux-mock-store": "^1.5.4",
"ts-jest": "25.2.1",
"ts-node": "~7.0.0",
"tslint": "~6.0.0",
"typescript": "~3.8.3"
}
}