-
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) · 979 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 979 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
{
"scripts": {
"test": "./node_modules/mocha/bin/mocha --compilers js:babel-core/register -b",
"start": "babel-node index.js --presets es2015,stage-0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"mocha": "^3.2.0",
"nock": "^9.0.6",
"supertest": "^3.0.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"syntax-async-functions",
"transform-regenerator"
]
},
"dependencies": {
"babel": "^6.23.0",
"babel-register": "^6.23.0",
"body-parser": "^1.17.2",
"express": "^4.14.1",
"express-jwt": "^5.3.0",
"jsonwebtoken": "^7.3.0",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"winston": "^2.3.1"
}
}