-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.5 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
{
"name": "ntuee-course",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"build-client": "webpack --config webpack.client.js --mode production",
"build-server": "webpack --config webpack.server.js --mode production",
"build": "npm run build-client && npm run build-server",
"develop-client": "webpack-dev-server --config webpack.client.js --mode development --watch",
"develop-server": "webpack --config webpack.server.js --watch --mode development",
"reset-db": "node ./server/database/database.js reset"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.10.5",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.6",
"file-loader": "^6.0.0",
"nodemon": "^2.0.4",
"prettier": "2.0.5",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"bcrypt": "^5.0.0",
"clean-webpack-plugin": "^3.0.0",
"connect-redis": "^5.0.0",
"debug": "^4.1.1",
"depd": "^2.0.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-session": "^1.17.1",
"html-react-parser": "^0.13.0",
"html-webpack-plugin": "^4.3.0",
"mongoose": "^5.9.24",
"morgan": "^1.10.0",
"node-uuid": "^1.4.8",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-beautiful-dnd": "^13.0.0",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router": "^5.2.0",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.2.0",
"redis": "^3.0.2",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"sanitize-html": "^1.27.1",
"webpack": "^4.43.0",
"webpack-node-externals": "^2.3.0",
"yargs": "^15.4.1"
}
}