-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.32 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
{
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf build",
"copy-index": "mkdirp build && ejs-cli src/index.html.ejs > build/index.html",
"build": "npm run copy-index && rollup -c",
"watch": "npm run copy-index && rollup -c --watch",
"serve": "babel-node tools/devServer.js",
"start": "npm-run-all --parallel watch serve"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"connect": "^3.5.0",
"copyfiles": "^1.0.0",
"ejs": "^2.5.3",
"ejs-cli": "^2.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"livereload": "^0.6.0",
"npm-run-all": "^4.1.1",
"rimraf": "^2.5.4",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-svelte": "^3.1.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"serve-static": "^1.11.1"
},
"dependencies": {
"history": "^4.4.1",
"mkdirp": "^0.5.1",
"route-parser": "^0.0.5"
}
}