-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 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
{
"name": "utha-stories",
"version": "0.1.0",
"description": "utha components",
"main": "index.js",
"author": "Yuthasak Tanruengsri",
"license": "MIT",
"dependencies": {
"app-root-dir": "^1.0.2",
"classnames": "^2.2.5",
"lodash": "^4.17.4",
"postcss-cssnext": "^2.11.0",
"postcss-loader": "^2.0.5",
"precss": "^1.4.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-icons": "^2.2.5",
"react-transition-group": "^1.1.3",
"uuid": "^3.0.1"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"@storybook/addon-actions": "^3.1.5",
"@storybook/addon-info": "^3.0.0-alpha.0",
"@storybook/react": "^3.1.5",
"babel-eslint": "^7.2.3",
"css-loader": "^0.28.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"file-loader": "^0.11.1",
"gh-pages-deploy": "^0.4.2",
"json-loader": "^0.5.4",
"node-sass": "^4.5.3",
"randomcolor": "^0.5.2",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.2",
"svg-fill-loader": "^0.0.8",
"svg-sprite-loader": "^3.0.5",
"svgo-loader": "^1.2.1",
"webpack": "^2.6.1"
},
"scripts": {
"lint": "eslint src --ext .jsx --ext .js",
"start": "start-storybook -p 9001 -c .storybook",
"nojekyll": "touch .nojekyll",
"build": "NODE_ENV=production webpack",
"deploy": "gh-pages-deploy",
"storybook": "npm run start",
"build-storybook": "build-storybook -o public"
},
"gh-pages-deploy": {
"staticpath": "public",
"prep": [
"build-storybook"
],
"post": [
"nojekyll"
],
"noprompt": true
}
}