-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1009 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1009 Bytes
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": "smartsight-api",
"version": "0.0.1",
"description": "API for the SmartSight app",
"main": "server.js",
"scripts": {
"start": "NODE_ENV=prod node server",
"dev": "NODE_ENV=dev nodemon server",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint && NODE_ENV=test ava --verbose */**/*.test.js"
},
"engines": {
"node": ">=6"
},
"repository": "smartsight/smartsight-api",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/smartsight/smartsight-api/issues"
},
"homepage": "https://github.com/smartsight/smartsight-api#readme",
"dependencies": {
"co-busboy": "^1.3.1",
"koa": "^1.2.5",
"koa-router": "^5.4.0",
"node-uuid": "^1.4.7",
"python-shell": "^0.4.0"
},
"devDependencies": {
"ava": "^0.18.2",
"chai": "^3.5.0",
"dotenv": "^4.0.0",
"nodemon": "^1.11.0",
"standard": "^9.0.0",
"supertest": "^3.0.0",
"supertest-koa-agent": "^0.3.0",
"winston": "^2.3.1"
}
}