-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
92 lines (92 loc) · 2.61 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
{
"name": "ntuee-course",
"version": "0.1.0",
"private": true,
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@material-ui/pickers": "3.2.9",
"@mui/material": "^5.2.2",
"@reduxjs/toolkit": "^1.1.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@uiw/react-md-editor": "^3.4.9",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"clsx": "^1.2.1",
"connect-redis": "^5.1.0",
"csv-stringify": "^5.6.2",
"date-fns": "^2.23.0",
"debug": "^4.3.1",
"depd": "^2.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-session": "^1.17.1",
"fast-csv": "^4.3.6",
"http-proxy-middleware": "^2.0.0",
"moment": "^2.29.1",
"mongoose": "^5.12.0",
"morgan": "^1.10.0",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.1",
"node-uuid": "^1.4.8",
"papaparse": "^5.3.1",
"prop-types": "^15.7.2",
"pure-react-carousel": "^1.27.5",
"qs": "^6.10.1",
"rc-scrollbars": "^1.1.3",
"react": "^17.0.1",
"react-beautiful-dnd": "^13.1.0",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.1",
"react-redux": "^7.1.3",
"react-responsive": "^8.1.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.1",
"react-scroll": "^1.8.1",
"redis": "^3.0.2",
"styled-components": "^5.2.0",
"swagger-ui-express": "^4.1.6",
"yargs": "^16.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"format": "npx prettier --write .",
"test": "react-scripts test",
"eject": "react-scripts eject",
"dev-server": "NODE_ENV=development nodemon ./server/app.js",
"window-dev-server": "set NODE_ENV=development&&nodemon ./server/app.js",
"server": "node ./server/app.js",
"database": "NODE_ENV=development node ./server/database/database.js",
"window-database": "set NODE_ENV=development&&node ./server/database/database.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"nodemon": "^1.3.3",
"prettier": "^2.3.1",
"superagent": "^6.1.0",
"supertest": "^6.1.3"
}
}