-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 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
40
41
42
43
44
{
"name": "api",
"version": "1.0.0",
"description": "The REST API for UC Berkeley's Pi Sigma Epsilon fraternity.",
"main": "app.js",
"repository": "https://github.com/BerkeleyPSE/api.git",
"author": "Rahul Rangnekar <rrangnekar96@gmail.com>",
"license": "MIT",
"private": false,
"engines": {
"node": "8.9.3"
},
"scripts": {
"start": "node ./start.js",
"dev": "nodemon ./start.js --ignore public/",
"load-data": "node ./data/load-sample-data.js --load-all",
"delete-data": "node ./data/load-sample-data.js --delete-all"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"cookie-session": "^2.0.0-beta.3",
"cors": "^2.8.4",
"date-fns": "^1.29.0",
"dotenv": "^6.0.0",
"es6-promisify": "^6.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"express-validator": "^5.2.0",
"lodash": "^4.17.10",
"mongoose": "^5.1.5",
"mongoose-mongodb-errors": "^0.0.2",
"passport": "^0.4.0",
"passport-google-oauth": "^2.0.0",
"passport-google-oauth20": "^1.0.0",
"pug": "^2.0.3",
"react-scripts": "^3.3.0",
"validator": "^10.3.0"
},
"devDependencies": {
"concurrently": "^3.5.1",
"nodemon": "^1.17.5"
}
}