-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 990 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
{
"name": "elm-twitch-chat-example",
"version": "1.0.0",
"description": "An Elm implementation of Twitch WebSocket chat",
"author": "Tolga Paksoy",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --port 8000 --hot --content-base src/",
"build": "rimraf dist && webpack",
"watch": "webpack --watch"
},
"devDependencies": {
"autoprefixer": "6.3.7",
"copy-webpack-plugin": "3.0.1",
"css-loader": "0.23.1",
"dotenv-webpack": "^1.4.3",
"elm-css": "0.6.0",
"elm-css-webpack-loader": "2.0.2",
"elm-github-install": "^0.1.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.22.0",
"postcss-loader": "0.10.0",
"rimraf": "2.5.3",
"style-loader": "0.13.1",
"unminified-webpack-plugin": "1.1.0",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.14.0",
"webpack-merge": "^2.4.0"
}
}