-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 1.09 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
{
"name": "myapp",
"version": "1.0.0",
"description": "Allows anyone with a UCSB email to vote on virtually anything. UCSB Polls will give information on what the student body's favorite beer is, what their favorite class was, what their favorite restaurant in IV is, etc.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node -r dotenv/config server.js",
"heroku-postbuild": "cd myapp && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ucsb-cs148-s21/1pm-t6-ucsb-poll.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ucsb-cs148-s21/1pm-t6-ucsb-poll/issues"
},
"homepage": "https://github.com/ucsb-cs148-s21/1pm-t6-ucsb-poll#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"firebase": "^8.4.2",
"passport": "^0.4.1",
"passport-auth0": "^1.4.0",
"react-checkmark": "^1.4.0",
"stream-chat": "^3.7.0"
}
}