-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 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
37
{
"name": "elm-webpack-starter",
"description": "Webpack setup for writing Elm apps",
"version": "0.6.2",
"license": "MIT",
"author": "Peter Morawiec",
"repository": {
"type": "git",
"url": "https://github.com/moarwick/elm-webpack-starter"
},
"scripts": {
"start": "webpack-dev-server --hot --inline --content-base src/",
"build": "rimraf dist && webpack",
"watch": "webpack --watch"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"bootstrap-sass": "^3.3.6",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.23.1",
"elm": "^0.17.0",
"elm-hot-loader": "^0.3.2",
"elm-webpack-loader": "^3.0.5",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.17.0",
"node-sass": "^3.7.0",
"postcss-loader": "^0.10.1",
"rimraf": "^2.5.2",
"sass-loader": "4.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.14.1"
}
}