-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.11 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
101
102
103
104
105
106
107
108
109
110
{
"name": "react-device-kit",
"description": "Collection of devices written in React",
"author": "siriwatknp",
"user": "siriwatknp",
"version": "0.2.0",
"scripts": {
"start": "catalog start docs",
"test": "jest --env=node --colors",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:lint": "eslint . --ignore-path .gitignore",
"gh-pages": "catalog build docs",
"gh-pages:deploy": "gh-pages -d docs/build",
"dist:es6": "del-cli ./dist-es6 && cross-env BABEL_ENV=es6 babel ./src --out-dir ./dist-es6",
"dist:modules": "del-cli ./dist-modules && cross-env BABEL_ENV=modules babel ./src --out-dir ./dist-modules",
"preversion": "yarn run test",
"prepublishOnly": "yarn run dist:es6 && yarn run dist:modules",
"postpublish": "yarn run deploy-storybook",
"postinstall": "node lib/post_install.js",
"storybook": "start-storybook -p 9001 -c .storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"storybook-deployer": {
"gitUsername": "siriwatknp",
"gitEmail": "[email protected]",
"commitMessage": "Deploy Storybook to GitHub Pages"
},
"main": "dist-modules",
"module": "dist-es6",
"jsnext:main": "dist-es6",
"devDependencies": {
"@storybook/addon-info": "^3.4.8",
"@storybook/addon-knobs": "^3.4.8",
"@storybook/addon-options": "^3.4.8",
"@storybook/addon-storysource": "^3.4.8",
"@storybook/react": "^3.4.8",
"@storybook/storybook-deployer": "^2.3.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"catalog": "^3.4.0",
"chai": "^4.1.2",
"cross-env": "^5.1.3",
"del-cli": "^1.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"gh-pages": "^1.1.0",
"git-prepush-hook": "^1.0.2",
"jest": "^22.4.2",
"purecss": "^1.0.0",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"react-github-corner": "^2.1.0",
"rimraf": "^2.6.2",
"styled-system": "^3.0.2",
"sync-exec": "^0.6.2",
"webpack": "^3.10.0"
},
"peerDependencies": {
"react": ">= 0.11.2 < 16.0.2"
},
"repository": {
"type": "git",
"url": ""
},
"homepage": "",
"bugs": {
"url": ""
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"packages"
]
},
"keywords": [
"react",
"reactjs",
"boilerplate"
],
"license": "MIT",
"pre-push": [
"test"
],
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"emotion": "^9.2.6",
"lodash": "^4.17.10",
"prop-types": "^15.6.2",
"react-emotion": "^9.2.6"
}
}