-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.79 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "app.js",
"engines": {
"node": "9.1.0"
},
"babel": {
"presets": [
"es2015"
]
},
"dependencies": {
"body-parser": "^1.17.2",
"chai-http": "^3.0.0",
"express": "^4.15.4",
"lodash": "^4.17.4",
"nodemon": "^1.12.1",
"pg": "^6.4.2",
"pg-hstore": "^2.3.2",
"sequelize": "^4.23.4",
"swagger-jsdoc": "^1.3.0",
"validator": "^9.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-connect": "^6.0.2",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-istanbul": "^0.12.2",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"babel-watch": "^2.0.7",
"babili": "^0.1.4",
"chai": "^4.1.2",
"coveralls": "^2.7.1",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"istanbul": "^0.2.16",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.3.0",
"swagger": "^0.7.5"
},
"scripts": {
"test": "mocha server/tests/app.test.js --exit --require babel-register --reporter spec",
"start": "babel-watch server/app.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coveralls": "nyc --reporter=lcov --reporter=text-lcov npm test",
"build": "babel server -d server/dist --ignore server/dist",
"postinstall": "npm run build",
"start:dev": "babel-watch --watch server/ --exec babel-node -- server/app.js"
},
"author": "",
"license": "ISC"
}