-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.28 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
{
"name": "wheel-of-fortune",
"version": "1.0.0",
"description": "Webapp to generate coupons based on points that user collects",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently \"nodemon -r dotenv/config app.js\" \"cd client && npm start\"",
"install-client": "cd client && npm install",
"install-all": "npm install && npm run install-client",
"seed": "node -r dotenv/config seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CS554-Hack-Elite/Wheel-of-Fortune.git"
},
"author": "Hack Elite",
"license": "MIT",
"bugs": {
"url": "https://github.com/CS554-Hack-Elite/Wheel-of-Fortune/issues"
},
"homepage": "https://github.com/CS554-Hack-Elite/Wheel-of-Fortune#readme",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"express-session": "^1.17.3",
"firebase": "^9.20.0",
"firebase-admin": "^11.7.0",
"firebase-functions": "^4.3.1",
"fs": "^0.0.1-security",
"mongodb": "^5.1.0",
"path": "^0.12.7",
"redis": "^4.6.6"
},
"devDependencies": {
"concurrently": "^7.6.0",
"nodemon": "^2.0.21"
}
}