-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.64 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "riot-starter",
"version": "1.0.0",
"description": "A starter kit for Riot JS",
"main": "webpack.config.js",
"scripts": {
"html": "cpy ./src/index.html ./build/",
"bundle": "webpack -p -d --progress --colors",
"build": "npm-run-all html bundle",
"serve": "webpack-dev-server --hot",
"dev": "npm-run-all html serve"
},
"author": {
"name": "Stijn de Witt",
"email": "stijndewitt@hotmail.com",
"url": "https://stijndewitt.com"
},
"contributors": [
{
"name": "webkid",
"url": "http://webkid.io/"
},
{
"name": "artparks",
"url": "https://github.com/artparks"
},
{
"name": "Tianxiang Chen",
"url": "https://github.com/txchen"
}
],
"license": "CC-BY-4.0",
"dependencies": {
"npm-run-all": "^2.3.0",
"riot": "^2.5.0",
"riotcontrol": "0.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/download/riot-starter.git"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015-riot": "^1.1.0",
"cpy": "^4.0.1",
"cpy-cli": "^1.0.1",
"css-loader": "^0.23.0",
"csswring": "^5.1.0",
"file-loader": "^0.9.0",
"materialize-css": "^0.97.8",
"postcss-custom-properties": "^5.0.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.9.1",
"postcss-nested": "^1.0.0",
"riotjs-loader": "^3.0.0",
"style-loader": "^0.13.0",
"tag-pug-loader": "^1.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.9.10",
"webpack-dev-server": "^1.9.0"
},
"babel": {
"presets": [
"es2015-riot"
]
}
}