forked from f-4/WalkSafe-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.47 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "walksafe-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"seed": "babel-node db/seed.js",
"start": "babel-node server.js",
"shell": "babel-node db/shell.js",
"shell2": "babel-node db/shell/practice/shell.js",
"dev": "nodemon --exec babel-node server.js --inspect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/f-4/WalkSafe-Server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/f-4/WalkSafe-Server/issues"
},
"homepage": "https://github.com/f-4/WalkSafe-Server#readme",
"dependencies": {
"axios": "^0.16.2",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"express-jwt": "^5.3.0",
"express-session": "^1.15.5",
"forever": "^0.15.3",
"jsonwebtoken": "^8.0.1",
"mapbox": "^1.0.0-beta9",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth20": "^1.0.0",
"pg": "^7.3.0",
"pg-hstore": "^2.3.2",
"sequelize": "^4.8.2",
"shelljs": "^0.7.8"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-import": "^2.7.0",
"nodemon": "^1.11.0"
}
}