forked from elm-community/elm-webpack-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.1 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
38
{
"name": "elm-webpack-starter",
"description": "Webpack setup for writing Elm apps",
"version": "0.8.6",
"license": "MIT",
"author": "Peter Morawiec",
"repository": {
"type": "git",
"url": "https://github.com/moarwick/elm-webpack-starter"
},
"scripts": {
"start": "webpack-dev-server --hot --inline",
"prebuild": "rimraf dist",
"build": "webpack",
"reinstall": "npm i rimraf && rimraf node_modules && npm uninstall -g elm && npm i -g elm && npm i && elm package install"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"bootstrap-sass": "^3.3.7",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.27.3",
"elm": "^0.18.0",
"elm-webpack-loader": "^4.3.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"jquery": "^3.2.1",
"node-sass": "^4.5.1",
"postcss-loader": "^1.3.3",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.0",
"url-loader": "^0.5.8",
"webpack": "^2.3.1",
"webpack-dev-server": "^2.4.2",
"webpack-merge": "^4.1.0"
}
}