-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.91 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.91 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
{
"name": "@roistat/ui",
"description": "React ui components for roistat.com",
"repository": {
"type": "git",
"url": "https://github.com/roistat/react-ui"
},
"bugs": {
"url": "https://github.com/roistat/react-ui/issues"
},
"keywords": [
"ui",
"react"
],
"homepage": "https://github.com/roistat/react-ui",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"build:commonjs": "npm run clean:commonjs && export NODE_ENV=production && babel ./src --ignore story.jsx --out-dir ./lib",
"build:docs": "npm run clean:docs && styleguidist build && cp -R assets/fonts styleguide/fonts",
"build:storybook": "npm run clean:storybook && build-storybook -o storybook && cp -R assets/fonts storybook/fonts",
"clean:commonjs": "rm -rf ./lib",
"clean:docs": "rm -rf ./styleguid",
"clean:storybook": "rm -rf ./storybook",
"docs": "styleguidist server",
"storybook": "start-storybook -p 9010 -s ./assets",
"publish:docs": "npm run build:docs && gh-pages -d styleguide",
"prepublish": "npm run build:commonjs",
"postpublish": "npm run publish:docs"
},
"dependencies": {
"color": "0.11.3",
"jss": "5.2.0",
"jss-camel-case": "1.1.0",
"jss-default-unit": "^4.0.0",
"jss-nested": "1.0.3",
"jss-vendor-prefixer": "2.0.0"
},
"devDependencies": {
"@kadira/react-storybook-addon-info": "3.1.1",
"@kadira/storybook": "1.41.0",
"babel-cli": "6.11.4",
"babel-core": "6.11.4",
"babel-loader": "6.2.4",
"babel-plugin-transform-react-inline-elements": "6.8.0",
"babel-plugin-transform-react-remove-prop-types": "0.2.9",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "6.5.0",
"gh-pages": "0.11.0",
"glob": "7.0.5",
"raf": "^3.3.0",
"react-styleguidist": "3.1.1"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"version": "0.0.17"
}