-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
100 lines (100 loc) · 2.84 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
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
{
"name": "storybook-boilerplate",
"version": "3.0.0-alpha.1",
"description": "Themable React App based on Storybook",
"main": "dist/App.js",
"scripts": {
"deploy": "node .scripts/deployer",
"prepublish": "node .scripts/npm-prepublish.js",
"postpublish": "node .scripts/npm-postpublish.js",
"lint": "node .scripts/lint.js",
"lintfix": "node .scripts/lint.js --fix",
"testonly": "node .scripts/run_tests",
"test": "npm run lint && npm run testonly",
"test-watch": "node .scripts/run_tests --watch --watch-extensions jsx,json",
"test-storybook": "storyshots",
"status": "node .scripts/npm-status.js && node .scripts/lint.js -f json && node .scripts/run_tests -R min",
"storybook": "start-storybook -p 9010 && npm run test-watch",
"start": "start-storybook -p 9001"
},
"repository": {
"type": "git",
"url": "https://github.com/sm-react/react-theming"
},
"keywords": [
"storybook",
"react",
"material",
"ui",
"material-ui",
"addon",
"decorator",
"theme",
"editor",
"customization",
"dark theme",
"light theme",
"boilerplate",
"app",
"npm",
"development",
"addons"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sm-react/react-theming/issues"
},
"homepage": "https://github.com/sm-react/react-theming",
"devDependencies": {
"@storybook/addon-info": "^3.1.4",
"@storybook/addon-knobs": "3.1.2",
"@storybook/addon-notes": "3.1.2",
"@storybook/addon-options": "3.1.2",
"@storybook/addon-storyshots": "^3.1.4",
"@storybook/react": "3.1.3",
"babel-cli": "^6.11.4",
"babel-core": "^6.5.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.5.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"dateformat": "^2.0.0",
"enzyme": "^2.2.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"git-url-parse": "^6.0.1",
"jsdom": "^9.5.0",
"mocha": "^3.2.0",
"node-sass": "^3.10.0",
"nodemon": "^1.11.0",
"raw-loader": "^0.5.1",
"react": "^15.3.0",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.3.0",
"sass-loader": "^4.0.2",
"semver": "^5.3.0",
"shelljs": "^0.7.3",
"sinon": "^1.17.3",
"storybook-addon-material-ui": "^0.7.4",
"style-loader": "^0.13.1"
},
"peerDependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1"
},
"dependencies": {
"material-ui": "^0.17.0",
"prop-types": "^15.5.10",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-theme-provider": "^0.1.3"
}
}