-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 973 Bytes
/
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
{
"name": "ratemate_cs411",
"version": "1.0.0",
"description": "An application that uses ratemyprofessor data and class data to recommend classes",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "node server.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BendJohn/RateMate_CS411.git"
},
"author": "Ben John, Andrew Chao, Danielle Yang, Julia Wisowaty",
"license": "ISC",
"bugs": {
"url": "https://github.com/BendJohn/RateMate_CS411/issues"
},
"homepage": "https://github.com/BendJohn/RateMate_CS411#readme",
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"express": "^4.17.1",
"mysql": "^2.18.1"
},
"devDependencies": {
"nodemon": "^2.0.4"
},
"keywords": []
}