-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.13 KB
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
{
"name": "multibeast",
"version": "2.0.0",
"description": "A React-based web application for planning and processing Comms Team coverage during the Aspen Ideas Festival. Written in React + Express + MongoDB and much ❤️.",
"main": "index.js",
"dependencies": {
"@slack/webhook": "^6.1.0",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"concurrently": "^7.2.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-handler": "^1.2.0",
"express-jwt": "^7.7.5",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.5",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"nodemon": "^2.0.16"
},
"engines" : {
"npm" : ">=7.0.0",
"node" : ">=16.0.0"
},
"scripts": {
"start": "node index.js",
"heroku-postbuild": "cd client && npm install && npm run build",
"development": "concurrently \"nodemon index.js\" \"cd client && npm start\"",
"staging": "concurrently \"node index.js\" \"cd client && npm run build\"",
"poststart": "cd client && npm install && npm run build"
},
"keywords": [],
"author": "Gabe Salkin",
"license": "ISC"
}