-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.76 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.76 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "sourcejs-react-styleguidist",
"description": "SourceJS integration plugin for react-styleuguidist",
"version": "0.5.0",
"homepage": "https://github.com/sourcejs/sourcejs-react-styleguidist",
"contributors": [
{
"name": "Artem Sapegin",
"url": "http://sapegin.me/"
},
{
"name": "Robert Haritonov",
"url": "http://rhr.me/"
}
],
"repository": {
"type": "git",
"url": "git://github.com/sourcejs/sourcejs-react-styleguidist.git"
},
"bugs": {
"url": "https://github.com/sourcejs/sourcejs-react-styleguidist/issues"
},
"license": "MIT",
"engines": {
"node": ">=0.12.0"
},
"dependencies": {
"babel-core": "~6.18.2",
"babel-loader": "6.2.7",
"babel-preset-react-hmre": "^1.1.1",
"babel-plugin-react-transform": "2.0.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chalk": "1.1.3",
"codemirror": "5.20.2",
"cross-env": "^3.1.3",
"css-loader": "0.25.0",
"express": "4.14.0",
"extract-text-webpack-plugin": "1.0.1",
"findup": "0.1.5",
"glob": "7.1.1",
"lodash": "4.16.6",
"marked": "0.3.6",
"minimist": "1.2.0",
"postcss-advanced-variables": "1.2.2",
"postcss-loader": "1.1.0",
"prettyjson": "1.1.3",
"react": "^15.3.2",
"react-codemirror": "0.2.6",
"react-dom": "^15.3.2",
"react-transform-catch-errors": "1.0.2",
"react-transform-hmr": "1.0.4",
"redbox-react": "1.3.2",
"sanitize.css": "4.1.0",
"style-loader": "0.13.1",
"webpack": "1.13.3",
"webpack-dev-middleware": "1.8.4",
"webpack-hot-middleware": "2.13.1",
"webpack-merge": "2.1.1"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": "~0.14.2"
},
"devDependencies": {
"babel-core": "~6.18.2",
"babel-eslint": "7.1.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-standalone": "^6.7.7",
"chai": "~3.5.0",
"css-modules-require-hook": "~4.0.5",
"eslint": "3.9.1",
"eslint-plugin-react": "6.6.0",
"expect-react-shallow": "~1.2.1",
"gulp": "3.9.1",
"gulp-gh-pages": "0.5.4",
"mocha": "~3.1.2",
"postcss-modules-extract-imports": "~1.0.0",
"postcss-modules-scope": "~1.0.0",
"react": "^15.3.2"
},
"scripts": {
"test": "npm run lint && npm run mocha && npm run build",
"mocha": "mocha test",
"mocha:watch": "mocha --watch --reporter min test",
"start": "./bin/styleguidist server --config example/styleguide.config.js",
"lint": "eslint src --ext .js",
"build": "./bin/styleguidist build --config example/styleguide.config.js"
},
"keywords": [
"sourcejs",
"react",
"jsx",
"styleguide",
"style guide",
"documentation",
"docs",
"component",
"components"
]
}