-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "express-dev",
"version": "1.2.0",
"description": "express wrapper containing webpack dev middleware and hot middleware",
"main": "build/index.js",
"dependencies": {
"babel-core": "^5.8.23",
"babel-eslint": "^4.1.1",
"eslint": "^1.3.1",
"eslint-config-airbnb": "^0.0.8",
"express": "^4.13.3",
"webpack": "^1.12.1",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.0.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.2.0",
"lodash": "^3.10.1",
"mocha": "^2.5.3",
"yargs": "^3.24.0"
},
"scripts": {
"build": "rm -rf build/* && babel src/index.js --out-file build/index.js",
"test": "mocha --compilers js:babel-register test/index.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/madole/express-dev"
},
"author": "Andrew McDowell <[email protected]> (http://madole.github.io/)",
"license": "ISC"
}