This repository has been archived by the owner on Jan 13, 2021. It is now read-only.
forked from storybookjs/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.1 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
{
"name": "@storybook/design-system",
"version": "5.1.26",
"description": "Storybook design system",
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/design-system.git"
},
"license": "MIT",
"author": {
"name": "Michael Shilman",
"email": "[email protected]"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "babel src -d dist --extensions \".js,.jsx,.ts,.tsx\" --ignore \"**/*.test.js\" --ignore \"**/*.stories.js\"",
"build-docs": "build-storybook --docs",
"build-storybook": "build-storybook",
"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 && auto shipit",
"storybook": "start-storybook -p 6006"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"*.html": [
"yarn lint:js --fix"
],
"*.js": [
"yarn lint:js --fix"
],
"package.json": [
"yarn lint:package"
]
},
"dependencies": {
"copy-to-clipboard": "^3.3.1",
"polished": "^3.6.4",
"prismjs": "1.20.0",
"prop-types": "^15.5.4",
"react-modal": "^3.11.2",
"react-popper-tooltip": "^2.11.1",
"styled-components": "^4.4.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@storybook/addon-a11y": "6.0.20",
"@storybook/addon-actions": "6.0.20",
"@storybook/addon-docs": "6.0.20",
"@storybook/addon-essentials": "6.0.20",
"@storybook/addon-storysource": "6.0.20",
"@storybook/eslint-config-storybook": "^2.4.0",
"@storybook/linter-config": "^2.5.0",
"@storybook/react": "6.0.20",
"@types/fs-extra": "^9.0.1",
"@types/styled-components": "^5.1.0",
"auto": "^9.50.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.7",
"chromatic": "^5.0.0",
"cross-env": "^7.0.2",
"dotenv-cli": "^3.1.0",
"eslint": "^7.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sort-package-json": "^1.44.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.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"
}
}