forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.39 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.39 KB
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
{
"name": "@codesandbox/components",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/codesandbox/codesandbox-client",
"directory": "packages/components"
},
"files": [
"lib"
],
"main": "lib/index",
"source": true,
"scripts": {
"build": "yarn build:lib",
"build:dev": "yarn build",
"build:lib": "yarn clean && yarn tsc",
"build:storybook": "build-storybook -c .storybook -o public",
"clean": "rimraf lib && yarn rimraf node_modules/@types/react && yarn rimraf node_modules/@types/react-native",
"lint": "eslint --ext .js,.ts,.tsx src",
"start": "yarn tsc --watch",
"start:storybook": "start-storybook",
"typecheck": "tsc --noEmit --pretty",
"chromatic": "if-env CIRCLE_BRANCH=master && yarn chromatic:master || yarn chromatic:branch",
"chromatic:master": "CHROMATIC_APP_CODE=nffds42ndde ./node_modules/.bin/chromatic --build-script-name=build:storybook --exit-zero-on-changes --auto-accept-changes",
"chromatic:branch": "CHROMATIC_APP_CODE=nffds42ndde ./node_modules/.bin/chromatic --build-script-name=build:storybook --exit-zero-on-changes",
"prepublish": "yarn build"
},
"dependencies": {
"@codesandbox/template-icons": "^1.1.0",
"@reach/auto-id": "^0.7.1",
"@reach/menu-button": "^0.8.5",
"@reach/tooltip": "^0.8.6",
"@reach/visually-hidden": "^0.7.0",
"@styled-system/css": "^5.1.4",
"codesandbox-api": "0.0.24",
"color": "3.1.2",
"date-fns": "^2.8.1",
"deepmerge": "^4.2.2",
"dot-object": "^2.1.3",
"react-router-dom": "^5.1.2",
"react-tagsinput": "^3.19.0",
"styled-components": "^4.4.1",
"typeface-inter": "^3.11.2"
},
"devDependencies": {
"@storybook/addon-a11y": "^5.3.18",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-storysource": "^5.3.18",
"@storybook/addon-viewport": "^5.3.18",
"@storybook/csf": "^0.0.1",
"@storybook/react": "^5.3.18",
"@types/color": "3.0.1",
"@types/lodash": "^4.14.149",
"@types/styled-components": "^4.4.1",
"babel-preset-react-app": "^9.1.2",
"cpx": "^1.5.0",
"if-env": "^1.0.4",
"np": "^5.2.1",
"rimraf": "^3.0.0",
"storybook-addon-styled-component-theme": "^1.3.0",
"storybook-chromatic": "^3.5.3",
"typescript": "3.7.4"
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0"
}
}