-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 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
34
35
36
37
38
39
40
{
"name": "backscratch",
"version": "1.0.0",
"description": "API server for BackScratch mobile app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "node -r dotenv/config index.js",
"lint": "eslint './**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infinitetoast/backScratch.git"
},
"author": "Daniel Glaser, Harvey Sanders, Kendall Spears, Neal Talyor",
"license": "ISC",
"bugs": {
"url": "https://github.com/infinitetoast/backScratch/issues"
},
"homepage": "https://github.com/infinitetoast/backScratch#readme",
"dependencies": {
"bluebird": "^3.4.3",
"body-parser": "^1.15.2",
"cities": "^1.1.2",
"debug": "^2.2.0",
"express": "^4.14.0",
"morgan": "^1.7.0",
"neo4j": "^2.0.0-RC2",
"neo4j-driver": "^1.1.0-M01",
"nodemailer": "^2.6.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"dotenv": "^2.0.0",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0"
}
}