-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
68 lines (68 loc) · 1.96 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
{
"name": "babel-react-rollup-starter",
"version": "7.0.0",
"title": "babel-react-rollup-starter",
"description": "A simple boilerplate for web apps with React, Babel, and Rollup.",
"keywords": [
"Babel",
"Browsersync",
"React",
"Rollup",
"StandardJS"
],
"homepage": "https://github.com/yamafaktory/babel-react-rollup-starter",
"author": {
"name": "Davy Duperron",
"url": "https://github.com/yamafaktory"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yamafaktory/babel-react-rollup-starter"
},
"engines": {
"npm": ">=3.0.0",
"node": ">=6.0.0"
},
"dependencies": {
"react": "16.2.0",
"react-dom": "16.2.0"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-plugin-external-helpers": "6.18.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"browser-sync": "2.18.13",
"npm-run-all": "4.1.2",
"rollup": "0.52.0",
"rollup-plugin-babel": "3.0.2",
"rollup-plugin-commonjs": "8.2.6",
"rollup-plugin-node-globals": "1.1.0",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-replace": "2.0.0",
"rollup-plugin-uglify": "2.0.1",
"rollup-watch": "4.3.1",
"snazzy": "6.0.0",
"standard": "10.0.3"
},
"scripts": {
"prebuild": "npm run std --silent",
"build": "rollup -c config/prod.js",
"prebuild:dev": "npm run std --silent",
"build:dev": "rollup -c config/dev.js -w",
"browse": "browser-sync start --s --ss build --index html/index-dev.html --files html/**/*.html,build/**/*.js --no-notify",
"start": "npm-run-all --parallel build:dev browse",
"std": "standard --verbose | snazzy",
"test": "npm run build:dev",
"preversion": "git pull && npm up && npm run std --silent",
"version": "npm run build && git add -A .",
"postversion": "git push --tags origin HEAD"
},
"standard": {
"ignore": [
"build"
]
}
}