-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "elm-webpack-skeleton",
"version": "0.0.1",
"description": "A skeleton project for using elm with webpack.",
"main": "src/index.js",
"scripts": {
"build": "rimraf dist && webpack --config webpack.prod.config.js",
"watch": "webpack --config webpack.prod.config.js --watch",
"dev": "webpack-dev-server --config webpack.dev.config.js --port 3000 --hot --inline",
"test": "webpack-dev-server --config webpack.test.config.js --port 3001 --inline"
},
"keywords": [
"elm",
"skeleton",
"webpack",
"elm-test",
"elm-webpack-loader",
"elm-hot-loader"
],
"author": "greyepoxy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/greyepoxy/elm-webpack-skeleton.git"
},
"devDependencies": {
"basscss": "^8.0.1",
"css-loader": "^0.23.1",
"elm-hot-loader": "^0.3.2",
"elm-webpack-loader": "^3.0.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.17.0",
"rimraf": "^2.5.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.13.0"
}
}