forked from yamafaktory/buble-react-rollup-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.78 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
{
"name": "buble-react-rollup-starter",
"version": "7.0.0",
"title": "buble-react-rollup-starter",
"description": "A simple boilerplate for web apps with React, Bublé and Rollup.",
"keywords": [
"Bublé",
"Browsersync",
"React",
"Rollup",
"StandardJS"
],
"homepage": "https://github.com/yamafaktory/buble-react-rollup-starter",
"author": {
"name": "Davy Duperron",
"url": "https://github.com/yamafaktory"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yamafaktory/buble-react-rollup-starter"
},
"engines": {
"npm": ">=3.0.0",
"node": ">=6.0.0"
},
"dependencies": {
"react": "16.2.0",
"react-dom": "16.2.0"
},
"devDependencies": {
"browser-sync": "2.23.6",
"npm-run-all": "4.1.2",
"rollup": "0.56.5",
"rollup-plugin-buble": "0.19.2",
"rollup-plugin-commonjs": "9.0.0",
"rollup-plugin-node-globals": "1.1.0",
"rollup-plugin-node-resolve": "3.2.0",
"rollup-plugin-replace": "2.0.0",
"rollup-plugin-uglify": "3.0.0",
"rollup-watch": "4.3.1",
"snazzy": "7.1.1",
"standard": "11.0.0"
},
"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",
"preversion": "git pull && npm up && npm run std --silent",
"version": "npm run build && git add -A .",
"postversion": "git push --tags origin HEAD",
"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"
},
"standard": {
"ignore": [
"build"
]
}
}