-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.74 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
{
"name": "cs2102",
"version": "1.0.0",
"engines": {
"node": "v10.15.3"
},
"description": "A new course management system designed for universities. Read the comprehensive project report [here](https://docs.google.com/document/d/1ENF5UO0I38q2edzLOLcoxlV74OWQ3HdITq-fU0ZmC04/edit?usp=sharing)",
"main": "server.js",
"dependencies": {
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^5.0.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"morgan": "^1.9.1",
"nodemon": "^1.19.4",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.12.1",
"react-bootstrap-dialog": "^0.13.0",
"react-confirm-alert": "^2.4.1",
"react-confirm-bootstrap": "^5.3.0",
"react-cookie": "^4.0.1",
"react-modal": "^3.11.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@iconify/icons-mdi": "^1.0.31",
"@iconify/react": "^1.1.1"
},
"scripts": {
"start": "node server.js",
"server": "node server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"postinstall": "cd client && npm install",
"heroku-postbuild": "npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/j-alicia-long/CS2102.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/j-alicia-long/CS2102/issues"
},
"homepage": "https://github.com/j-alicia-long/CS2102#readme"
}