forked from alexlande/react-style-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "react-style-guide",
"version": "1.0.2",
"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": {
"highlight.js": "^8.4.0",
"react-to-jsx": "^1.2.0",
"slugify": "^0.1.0"
},
"devDependencies": {
"jsx-loader": "^0.12.2",
"webpack": "^1.5.3",
"webpack-dev-server": "^1.7.0"
},
"peerDependencies": {
"react": ">=0.12.2 <0.14.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"
}