-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.81 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
{
"name": "@rivertam/generic-component",
"version": "0.2.0",
"description": "A generic component boilerplate",
"main": "./lib/index.js",
"files": [
"./lib"
],
"scripts": {
"build": "rollup -c",
"start": "concurrently --kill-others \"npm run start-docs\" \"npm run build:watch\"",
"start-docs": "cd docs && node scripts/start.js",
"build:watch": "rollup -c -w",
"prepublishOnly": "(git diff-index --quiet HEAD -- && npm run build && npm run build-docs) || (echo \"ERROR PUBLISHING: You must commit your changes\" && exit 1)",
"publish": "gh-pages -d docs/build",
"build-docs": "cd docs && node scripts/build.js"
},
"author": "Ben Berman",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"concurrently": "^3.4.0",
"cross-env": "^5.0.0",
"css-loader": "^0.28.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-react-app": "^1.0.3",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"gh-pages": "^1.0.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-watch": "^3.2.2",
"style-loader": "^0.17.0",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0"
},
"dependencies": {}
}