forked from HackerExperience/HEBorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.57 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "elm-webpack-starter",
"description": "Webpack setup for writing Elm apps",
"version": "0.8.4",
"license": "MIT",
"author": "Peter Morawiec",
"repository": {
"type": "git",
"url": "https://github.com/moarwick/elm-webpack-starter"
},
"watch": {
"elm-css": {
"patterns": [
"src/OS/Style.elm",
"src/OS/*/Style.elm",
"src/Apps/*/Style.elm",
"src/Core/Style.elm",
"src/Core/Stylesheets.elm"
],
"extensions": "elm"
}
},
"scripts": {
"start": "webpack-dev-server --hot --inline --port 8000 & npm run watch",
"build": "webpack",
"reinstall": "npm i rimraf && rimraf node_modules && npm uninstall -g elm && npm i -g elm && npm i && elm package install",
"watch": "npm-watch",
"elm-css": "sleep 4 && elm-css src/Core/Stylesheets.elm -o build/css/",
"comment": "sleep 4 on elm-css is required so there is no conflict/slow-down on compilation time"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"elm-hot-loader": "^0.5.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.17.0",
"postcss-loader": "^1.1.1",
"rimraf": "^2.5.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^2.4.0",
"elm-css": "^0.6.0"
},
"dependencies": {
"elm-test": "0.18.2",
"leaflet": "^1.1.0",
"npm-watch": "^0.1.8",
"webpack-dev-server": "^1.16.3"
}
}