-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 744 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 744 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
{
"name": "elm-css-modules",
"version": "0.1.0",
"description": "Integrates webpack's css modules into Elm's development process",
"scripts": {
"start": "webpack-dev-server --hot --inline --content-base src/",
"build": "rimraf dist && webpack",
"watch": "webpack --watch"
},
"devDependencies": {
"babel-core": "6.9.0",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.9.0",
"css-loader": "^0.23.1",
"elm": "0.17.0",
"elm-hot-loader": "0.3.2",
"elm-webpack-loader": "3.0.0",
"file-loader": "0.8.5",
"html-webpack-plugin": "2.17.0",
"rimraf": "2.5.2",
"style-loader": "^0.13.1",
"webpack": "1.13.0",
"webpack-dev-server": "1.14.1",
"webpack-merge": "0.12.0"
}
}