-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "react-style-guide",
"version": "3.0.0",
"main": "index.js",
"scripts": {
"example": "webpack-dev-server --config webpack.config.js --no-info --content-base example/",
"build-example": "webpack --config webpack.config.js --no-info --content-base example/"
},
"author": "Alex Lande",
"license": "MIT",
"dependencies": {
"create-react-class": "^15.6.2",
"highlight.js": "^8.4.0",
"prop-types": "^15.6.0",
"react-to-jsx": "^1.3.2",
"slugify": "^0.1.0"
},
"devDependencies": {
"jsx-loader": "^0.13.2",
"webpack": "^1.5.3",
"webpack-dev-server": "^1.7.0"
},
"peerDependencies": {
"react": ">=16.0.0"
},
"description": "A component to display React components with their JSX source in style guides",
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "https://github.com/alexlande/react-style-guide"
},
"keywords": [
"react",
"style-guide",
"pattern-library"
],
"bugs": {
"url": "https://github.com/alexlande/react-style-guide/issues"
},
"homepage": "https://github.com/alexlande/react-style-guide"
}