-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1009 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
35
{
"name": "elm-starter",
"description": "Webpack setup for writing Elm apps",
"version": "0.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"start": "webpack-dev-server --hot --inline --content-base src/",
"build": "rimraf dist && webpack",
"reinstall": "npm i rimraf && rimraf node_modules && npm uninstall -g elm && npm i -g elm && npm i && elm package install"
},
"devDependencies": {
"autoprefixer": "6.6.0",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.26.1",
"elm": "0.18.0",
"elm-hot-loader": "0.5.4",
"elm-webpack-loader": "4.1.1",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"html-webpack-plugin": "2.24.1",
"node-sass": "4.1.1",
"postcss-loader": "1.2.1",
"rimraf": "2.5.4",
"sass-loader": "4.1.1",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2",
"webpack-merge": "2.0.0"
}
}