-
Notifications
You must be signed in to change notification settings - Fork 589
/
package.json
116 lines (116 loc) · 3.08 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
111
112
113
114
115
116
{
"name": "@storybook/design-system",
"version": "3.0.0",
"description": "Storybook design system",
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/design-system.git"
},
"license": "MIT",
"author": {
"name": "Michael Shilman",
"email": "[email protected]"
},
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"build-docs": "build-storybook --docs",
"build-storybook": "build-storybook",
"lint": "eslint .",
"lint:js": "cross-env NODE_ENV=production eslint --cache --cache-location=.cache/eslint --ext .js,.jsx,.html,.ts,.tsx,.mjs --report-unused-disable-directives",
"lint:package": "sort-package-json",
"release": "npm run build && ./scripts/release.sh",
"storybook": "start-storybook -p 6006"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"*.html": [
"yarn lint:js --fix",
"git add"
],
"*.js": [
"yarn lint:js --fix",
"git add"
],
"package.json": [
"yarn lint:package",
"git add"
]
},
"dependencies": {
"keycode": "^2.2.0",
"polished": "^3.4.1",
"prismjs": "1.17.1",
"react-modal": "^3.10.1",
"react-popper-tooltip": "^2.9.1",
"recompose": "^0.30.0",
"styled-components": "^5.0.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@storybook/addon-a11y": "^5.3.8",
"@storybook/addon-actions": "^5.3.8",
"@storybook/addon-docs": "^5.3.8",
"@storybook/addon-essentials": "^5.3.8",
"@storybook/addon-storysource": "^5.3.8",
"@storybook/react": "^5.3.8",
"auto": "^9.1.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-plugin-styled-components": "^1.10.6",
"cross-env": "^6.0.3",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^2.1.2",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"prettier-eslint": "^9.0.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"sort-package-json": "^1.21.0",
"storybook-chromatic": "^3.0.3"
},
"peerDependencies": {
"prop-types": "^15.5.4",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"auto": {
"plugins": [
"npm",
"released"
]
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/storybook"
}
}