-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 872 Bytes
/
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
{
"name": "image-search",
"version": "1.0.0",
"description": "image search abstraction layer",
"main": "app.js",
"engines": {
"node": "6.11.2"
},
"scripts": {
"test": "SET \"NODE_ENV=test\" && mocha test/",
"start": "node app.js",
"dev": "nodemon app.js",
"lint": "eslint app.js utils/ --fix",
"kill": "taskkill /f /im node.exe",
"deploy": "git push heroku master",
"postdeploy": "heroku open"
},
"author": "Alistair Willis",
"license": "ISC",
"dependencies": {
"chai": "4.1.2",
"cors": "2.8.4",
"dotenv": "4.0.0",
"express": "4.16.2",
"helmet": "3.9.0",
"mocha": "4.0.1",
"ms": "2.1.1",
"request": "2.83.0",
"request-promise": "4.2.2",
"supertest": "3.0.0",
"winston": "2.4.0"
},
"devDependencies": {
"eslint": "4.10.0",
"eslint-config-google": "0.9.1"
}
}