-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.79 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
{
"name": "react-component-lib",
"version": "0.0.1",
"description": "A boilerplate example for a React component library based on a styleguide.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ehellman/react-component-lib.git"
},
"scripts": {
"clean": "rimraf lib es",
"compile": "npm run compile:commonjs && npm run compile:es",
"compile:commonjs": "cross-env BABEL_ENV=commonjs babel modules --out-dir lib",
"compile:es": "cross-env BABEL_ENV=es babel modules --out-dir es --ignore test.js",
"prepublish": "npm run compile",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0-0",
"react-redux": "^4.3.0 || ^5.0.0",
"redux": "^3.0.0"
},
"author": "Erik Hellman",
"license": "MIT",
"devDependencies": {
"@storybook/addon-actions": "3.2.17",
"@storybook/addon-links": "3.2.17",
"@storybook/addon-options": "^3.2.17",
"@storybook/react": "3.2.17",
"babel-cli": "6.26.0",
"babel-core": "6.25.0",
"babel-loader": "7.1.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-plugin-transform-export-extensions": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-plugin-transform-react-remove-prop-types": "0.4.10",
"babel-preset-env": "1.6.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"cross-env": "5.0.5",
"polished": "1.4.0",
"prop-types": "15.5.10",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-redux": "5.0.6",
"redux": "3.7.2",
"rimraf": "2.6.1",
"styletron-client": "2.5.7",
"styletron-react": "2.5.8",
"webpack": "2.7.0"
}
}