-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.39 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
{
"name": "riot-starter",
"version": "1.0.0",
"description": "Riot.js Starterkit",
"main": "webpack.config.babel.js",
"author": "Kotaro Sugawara <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kotarella1110/riot-starter.git"
},
"scripts": {
"postinstall": "cp env.example.js env.js",
"start": "webpack-dev-server --progress --colors",
"build": "webpack -d --progress --colors",
"build:prod": "webpack --env.production --progress --colors",
"watch": "webpack --watch --progress --colors",
"watch:prod": "webpack --watch --env.production --progress --colors"
},
"dependencies": {
"riot": "^3.4.3",
"riot-route": "^3.1.1",
"riotcontrol": "^0.0.3"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015-riot": "^1.1.0",
"babel-preset-latest": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.2",
"riot-hot-reload": "^0.0.2",
"riot-tag-loader": "^1.0.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"url-loader": "^0.5.8",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.4",
"webpack-merge": "^4.1.0"
}
}