-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.44 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
{
"name": "elm-webpack-starter",
"description": "Webpack setup for writing Elm apps",
"version": "0.6.1",
"license": "MIT",
"author": "Peter Morawiec",
"repository": {
"type": "git",
"url": "https://github.com/moarwick/elm-webpack-starter"
},
"scripts": {
"start": "concurrently \"nodemon server/index.js\" \"webpack-dev-server --hot --inline --content-base src/\"",
"build": "rimraf dist && webpack && cp -r src/img/ dist/img/ && cp src/favicon.ico dist/favicon.ico",
"watch": "webpack --watch"
},
"devDependencies": {
"autoprefixer": "6.3.6",
"bootstrap-sass": "^3.3.6",
"concurrently": "^2.2.0",
"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",
"node-sass": "3.7.0",
"nodemon": "^1.10.0",
"postcss-loader": "0.9.1",
"rimraf": "2.5.2",
"sass-loader": "3.2.0",
"style-loader": "0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "1.14.1",
"webpack-merge": "^0.13.0"
},
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"express-cors": "0.0.3",
"localforage": "^1.4.2",
"lodash": "^4.13.1",
"q-io": "^1.13.2"
}
}