-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 988 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
{
"name": "middleman-webpack",
"version": "1.0.0",
"description": "An example of adding webpack to Middleman",
"main": "index.js",
"repository": "https://github.com/grassdog/middleman-webpack.git",
"author": "Ray Grasso <[email protected]>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development ./node_modules/webpack/bin/webpack.js --watch -d --color",
"build": "NODE_ENV=production ./node_modules/webpack/bin/webpack.js --bail -p"
},
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-env": "^1.1.8",
"clean-webpack-plugin": "^0.1.15",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0-beta",
"node-sass": "^4.5.0",
"postcss": "^5.2.12",
"postcss-loader": "^1.2.2",
"sass-loader": "^5.0.1",
"style-loader": "^0.13.1",
"webpack": "^2.2.1"
},
"dependencies": {
"d3": "^4.5.0",
"sanitize.css": "^4.1.0"
}
}