-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.42 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
69
70
71
72
73
74
75
76
{
"name": "react-storybook-addon-sections",
"version": "0.0.12",
"description": "A React Storybook addon to show additional information for your stories using predefined sections.",
"repository": {
"type": "git",
"url": "https://github.com/nutgaard/react-storybook-addon-sections.git"
},
"license": "MIT",
"scripts": {
"prepublish": "rimraf ./dist && npm run build",
"js:build": "babel --ignore tests,stories --plugins \"transform-runtime\" ./src --out-dir ./dist",
"html:build": "copyfiles -u 1 'src/**/*.css' dist/",
"build": "yarn run js:build && yarn run html:build",
"lint": "eslint src example",
"lintfix": "eslint src example --fix",
"testonly": "exit 0",
"test": "yarn run lint && yarn run testonly",
"storybook": "start-storybook -p 9010",
"build-storybook": "build-storybook -o .out",
"publish-storybook": "yarn run build-storybook && gh-pages -d .out && rimraf ./.out"
},
"devDependencies": {
"@storybook/react": "^3.0.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.23.0",
"copyfiles": "^1.2.0",
"cssbeautify": "^0.3.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"gh-pages": "^1.0.0",
"highlight.js": "^9.12.0",
"json-loader": "^0.5.4",
"raw-loader": "^0.5.1",
"react": "^15.5.4",
"react-collapse": "^4.0.2",
"react-dom": "^15.5.4",
"react-height": "^3.0.0",
"react-highlight": "^0.10.0",
"react-motion": "^0.5.0",
"rimraf": "^2.6.1",
"specificity": "^0.3.0",
"style-loader": "^0.18.1"
},
"peerDependencies": {
"@storybook/react": "^3.0.0",
"babel-runtime": "^6.23.0",
"cssbeautify": "^0.3.1",
"highlight.js": "^9.12.0",
"react": "^0.14.7 || ^15.0.0",
"react-collapse": "^4.0.2",
"react-dom": "^0.14.7 || ^15.0.0",
"react-height": "^3.0.0",
"react-highlight": "^0.10.0",
"react-motion": "^0.5.0",
"specificity": "^0.3.0"
},
"main": "dist/index.js",
"engines": {
"npm": "^3.0.0"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}