-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.26 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
{
"name": "shopping-queue",
"version": "1.0.0",
"description": "As a response to current Covid-19 pandemic, we decided to create a web app\r that helps control the flow of shoppers going to shopping at various store,\r in response to social distancing policies.",
"main": "server.js",
"scripts": {
"setup": "npm install && cd client && npm install && cd ..",
"build-run": "cd client && npm run build && cd .. && node server.js",
"start-run": "concurrently \"npm start\" \"cd client && npm start\"",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/csc309-summer-2020/team21.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/csc309-summer-2020/team21/issues"
},
"homepage": "https://github.com/csc309-summer-2020/team21#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"date-and-time": "^0.14.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"mongodb": "^3.6.0",
"mongoose": "^5.9.27",
"validator": "^13.1.1"
},
"devDependencies": {
"concurrently": "^5.3.0"
}
}