forked from storybookjs/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.9 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@storybook/design-system",
"version": "7.2.6",
"description": "Storybook design system",
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/design-system.git"
},
"license": "MIT",
"author": {
"name": "Michael Shilman",
"email": "michael@lab80.co"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"patch-package": "patch-package",
"build": "yarn build-images && yarn patch-package && babel src -d dist --extensions \".js,.jsx,.ts,.tsx\" --ignore \"**/*.test.js\" --ignore \"**/*.stories.js\"",
"build-images": "yarn svgr --out-dir src/images src/images",
"build-storybook": "yarn build-images && yarn patch-package && build-storybook -s .storybook/static",
"clean": "rm -rf dist",
"lint": "yarn lint:js && yarn lint:package",
"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": "dotenv yarn build & yarn typescript:generate && auto shipit",
"storybook": "yarn patch-package && start-storybook -p 6006 -s .storybook/static",
"typescript:check": "tsc --project ./tsconfig.json --noEmit",
"typescript:generate": "tsc --declaration --emitDeclarationOnly --outDir dist --declarationMap"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"*.html": [
"yarn lint:js --fix"
],
"*.js": [
"yarn lint:js --fix"
],
"*.ts?(x)": [
"yarn lint:js --fix"
],
"package.json": [
"yarn lint:package"
]
},
"dependencies": {
"@emotion/weak-memoize": "^0.2.5",
"@storybook/theming": "^6.2.0",
"@types/pluralize": "^0.0.29",
"@types/prismjs": "^1.16.6",
"@types/react-modal": "^3.12.1",
"@types/uuid": "^8.3.1",
"copy-to-clipboard": "^3.3.1",
"human-format": "^0.11.0",
"pluralize": "^8.0.0",
"polished": "^3.6.4",
"prismjs": "1.25.0",
"react-github-button": "^0.1.11",
"react-modal": "^3.11.2",
"react-popper-tooltip": "^2.11.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@storybook/addon-a11y": "^6.4.13",
"@storybook/addon-actions": "^6.4.13",
"@storybook/addon-docs": "^6.4.13",
"@storybook/addon-essentials": "^6.4.13",
"@storybook/addon-storysource": "^6.4.13",
"@storybook/eslint-config-storybook": "^2.4.0",
"@storybook/linter-config": "^2.5.0",
"@storybook/react": "^6.4.13",
"@svgr/cli": "^6.1.1",
"@types/fs-extra": "^9.0.1",
"auto": "^9.50.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-emotion": "^10.2.2",
"chromatic": "^5.0.0",
"cross-env": "^7.0.2",
"dotenv-cli": "^3.1.0",
"eslint": "^7.1.0",
"eslint-plugin-storybook": "^0.3.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"node-fetch": "^2.6.0",
"patch-package": "^6.4.7",
"prettier": "^2.4.0",
"react": "17",
"react-dom": "17",
"seedrandom": "^3.0.5",
"sort-package-json": "^1.51.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0"
},
"engines": {
"node": ">=10",
"npm": ">=5"
},
"auto": {
"plugins": [
"npm",
"released"
]
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/storybook"
},
"storybook": {
"title": "Storybook Design System",
"url": "https://master--5ccbc373887ca40020446347.chromatic.com"
}
}