-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.35 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
{
"name": "community-web",
"version": "0.0.1",
"private": true,
"scripts": {
"compileServer": "npm run clean; cd server; tsc",
"dev": "scripts/dev.sh",
"build": "scripts/build.sh",
"start": "scripts/start.sh",
"clean": "sh scripts/clean.sh",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "jest",
"report": "jest unit --coverage"
},
"dependencies": {
"@material-ui/core": "4.3.0",
"@material-ui/icons": "^4.2.1",
"@material-ui/lab": "^4.0.0-alpha.24",
"@material-ui/styles": "4.3.0",
"assert-plus": "^1.0.0",
"axios": "^0.19.0",
"clsx": "1.0.4",
"express": "^4.17.1",
"immer": "^3.2.0",
"inversify": "^5.0.1",
"inversify-express-utils": "^6.3.2",
"marked": "^0.7.0",
"material-table": "^1.49.0",
"moment-timezone": "^0.5.27",
"next": "9.2.0",
"next-i18next": "4.0.0",
"next-redux-saga": "4.1.2",
"next-redux-wrapper": "4.0.1",
"notistack": "0.9.7",
"optional-js": "^2.1.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-redux": "7.1.3",
"redux": "^4.0.4",
"redux-form": "^8.2.6",
"redux-saga": "^1.1.3",
"reflect-metadata": "^0.1.13",
"tsconfig-paths": "^3.9.0",
"typesafe-actions": "^4.4.2",
"uuid": "^3.4.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/assert-plus": "^1.0.4",
"@types/axios": "^0.14.0",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/express": "^4.17.0",
"@types/jest": "^24.0.16",
"@types/marked": "^0.6.5",
"@types/moment-timezone": "^0.5.12",
"@types/next-redux-saga": "^3.0.1",
"@types/node": "^12.6.9",
"@types/react": "16.8.24",
"@types/react-dom": "16.8.5",
"@types/react-redux": "^7.1.1",
"@types/redux-form": "^8.2.0",
"@types/redux-logger": "^3.0.7",
"@types/uuid": "^3.4.5",
"@types/winston": "^2.4.4",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest": "^24.8.0",
"nodemon": "^1.19.4",
"react-test-renderer": "^16.8.6",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"ts-jest": "^24.3.0",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.1.0",
"tslint-react-hooks": "^2.2.1",
"tslint-sonarts": "^1.9.0",
"typescript": "3.7.5"
}
}