-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
34 lines (34 loc) · 952 Bytes
/
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
{
"name": "expressapp",
"version": "1.0.0",
"description": "Webpack Dev Middleware Boilerplate",
"repository": {
"type": "git",
"url": "git://github.com/madole/webpack-dev-middleware-boilerplate"
},
"main": "src/app.coffee",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-dev": "nodemon src/app.coffee"
},
"author": "Andrew McDowell <[email protected]> (http://madole.github.io/)",
"license": "ISC",
"dependencies": {
"express": "^4.13.3",
"jade": "^1.11.0",
"jquery": "^2.1.4",
"stats-webpack-plugin": "^0.2.2"
},
"devDependencies": {
"coffee-loader": "^0.7.2",
"coffee-script": "^1.9.3",
"coffeelint": "^1.14.1",
"coffeelint-loader": "^0.1.1",
"css-loader": "^0.23.0",
"style-loader": "^0.13.0",
"stylus-loader": "^1.2.1",
"webpack": "^1.11.0",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^1.2.0"
}
}