-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "express-es6",
"version": "1.0.0",
"description": "Express + ES6 + Standard Linting + Debug + Nodemon + Jest",
"main": "src/index.js",
"repository": "[email protected]:ugiacoman/express-es6.git",
"author": "Ulises Giacoman",
"license": "MIT",
"scripts": {
"dev": "DEBUG=dev, nodemon src/index.js --exec \"node -r babel-register\"",
"build": "mkdir -p dist && babel src -s -D -d dist",
"start": "node dist/index.js -P $PORT",
"test" : "jest --coverage"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.4.0",
"body-parser": "^1.17.1",
"compression": "^1.6.2",
"express": "^4.15.2",
"morgan": "^1.8.1",
"pug": "^2.0.0-beta.12"
},
"devDependencies": {
"babel-register": "^6.24.1",
"jest": "^19.0.2",
"nodemon": "^1.11.0",
"rimraf": "^2.6.1",
"standard": "^10.0.2"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"standard": {
"globals": [ "test", "expect" ]
}
}