-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.79 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.79 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "react-component-styleguide",
"version": "0.0.49",
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"description": "Just annotated your actual components and make your docs from that with 1 command.",
"main": "lib/rcs.js",
"bin": {
"rcs": "bin/rcs"
},
"scripts": {
"test": "standard && mocha test/**/*.js",
"start": "cross-env NODE_ENV=development node bin/rcs 'example/components/**/*.js' -v -d",
"clean": "rimraf rcs-tmp/*",
"styleguide": "node bin/rcs 'example/components/**/*.js' -v",
"dev": "cross-env NODE_ENV=development node ./bin/rcs ./example/components/**/*.js -s ./example/styledComponents/**/*.js -v -c ./example/styleguide.js -d",
"pages:build": "cross-env NODE_ENV=production node ./bin/rcs ./example/components/**/*.js -s ./example/styledComponents/**/*.js -r /react-component-styleguide -v -c ./example/styleguide.js",
"pages:deploy": "gh-pages -d ./styleguide/src -r https://github.com/NogsMPLS/react-component-styleguide.git -b gh-pages",
"pages": "npm run pages:build && npm run pages:deploy && rimraf ./styleguide"
},
"files": [
".babelrc",
"app",
"bin",
"lib",
"LICENSE",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NogsMPLS/react-component-styleguide.git"
},
"keywords": [
"component",
"documentation",
"documentor",
"docs",
"generator",
"markdown",
"react",
"styleguide",
"react-docgen",
"style-guide",
"webpack",
"sample",
"examples",
"guide"
],
"author": "natsmith",
"license": "MIT",
"bugs": {
"url": "https://github.com/NogsMPLS/react-component-styleguide/issues"
},
"homepage": "https://github.com/NogsMPLS/react-component-styleguide#readme",
"standard": {
"parser": "babel-eslint",
"ignore": [
"dist",
"example"
]
},
"peerDependencies": {
"react": "^0.14.7 || ^15.0.1",
"react-dom": "^0.14.7 || ^15.0.1"
},
"dependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-polyfill": "^6.7.2",
"babel-register": "^6.6.5",
"babel-standalone": "^6.7.4",
"brace": "^0.8.0 ",
"bunyan": "^1.8.0",
"copy-webpack-plugin": "^3.0.1",
"cross-env": "^2.0.0",
"css-loader": "^0.23.1",
"extendify": "^1.0.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"fs-extra": "^0.30.0",
"glob": "^7.0.3",
"history": "2.0.1",
"highlight.js": "^9.2.0",
"warning": "3.0.0 ",
"deep-equal": "1.0.1",
"query-string": "4.2.2",
"invariant": "2.2.1",
"immutable": "^3.7.6",
"json-loader": "^0.5.4",
"marked": "^0.3.5",
"minimist": "^1.2.0",
"mustache": "^2.2.1",
"mustache-loader": "^0.3.1",
"object-assign": "^4.0.1",
"postcss-cssnext": "^2.5.1",
"postcss-import": "^8.0.2",
"postcss-loader": "^0.9.1",
"raw-loader": "^0.5.1",
"react-docgen": "NogsMPLS/react-docgen#feature/inferDisplayName",
"react-router": "^2.0.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"static-site-generator-webpack-plugin": "^2.0.1",
"redbox-react": "^1.2.3",
"slash": "^1.0.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.10.0"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint-plugin-react": "^5.2.2",
"gh-pages": "^0.11.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2",
"standard": "^7.1.2",
"uglify-js": "^2.6.2"
}
}