This repository has been archived by the owner on Feb 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.89 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "chill-rest-api",
"version": "1.0.0-alpha.1",
"description": "REST API for the chill monitoring service.",
"scripts": {
"lint": "eslint src test; exit 0",
"lint:fix": "eslint src test --fix; exit 0",
"start": "nodemon --watch src/ --exec babel-node src/ --source-maps",
"clean": "rimraf dist/",
"babel": "babel src/ -d dist/",
"build": "run-s lint clean babel",
"make:migration": "knex migrate:make",
"migrate": "knex migrate:latest",
"rollback": "knex migrate:rollback",
"synchronize": "babel-node ./src/scripts/synchronize"
},
"keywords": [
"chill",
"rest-api"
],
"authors": [],
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.2",
"bookshelf": "^0.10.2",
"bookshelf-camelcase": "^1.1.4",
"boom": "^4.2.0",
"camelize": "^1.0.0",
"compression": "^1.6.2",
"cors": "^2.8.1",
"express": "^4.14.1",
"helmet": "^3.2.0",
"http-status-codes": "^1.0.6",
"joi": "^10.1.0",
"knex": "^0.12.6",
"lodash": "^4.17.4",
"memory-cache": "^0.1.6",
"morgan": "^1.7.0",
"npm-run-all": "^4.0.2",
"pg": "^7.1.2",
"serve-favicon": "^2.4.2",
"sqlite3": "^3.1.8",
"swagger-jsdoc": "^1.9.0",
"webpack-merge": "^4.1.0",
"winston": "^2.3.0",
"winston-daily-rotate-file": "^1.4.0",
"yamljs": "^0.2.10"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-dynamic-import-node": "^1.0.2",
"babel-preset-env": "^1.3.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-register": "^6.24.1",
"eslint": "^3.19.0",
"nodemon": "^1.11.0",
"rimraf": "^2.6.1",
"semver": "^5.3.0"
},
"engines": {
"node": ">= 6.9.0",
"npm": ">= 3.10.8"
}
}