Skip to content

Commit ae1aa59

Browse files
authored
Revert package.json
1 parent 4022633 commit ae1aa59

File tree

1 file changed

+32
-40
lines changed

1 file changed

+32
-40
lines changed

packages/components/package.json

Lines changed: 32 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,78 +1,70 @@
11
{
22
"name": "@codesandbox/components",
3-
"version": "0.0.3",
4-
"main": "lib/index",
5-
"source": true,
6-
"contributors": [
7-
"Sara Vieira <sara@codesandbox.io> (https://iamsaravieira.com)",
8-
"Siddharth Kshetrapal <sid@codesandbox.io> (https://sid.st)"
9-
],
10-
"license": "MIT",
3+
"version": "0.0.1",
114
"repository": {
125
"type": "git",
136
"url": "https://github.com/codesandbox/codesandbox-client",
147
"directory": "packages/components"
158
},
16-
"bugs": {
17-
"url": "https://github.com/codesandbox/codesandbox-client/issues"
18-
},
19-
"homepage": "https://github.com/codesandbox/codesandbox-client#readme",
209
"files": [
2110
"lib"
2211
],
12+
"main": "lib/index",
13+
"source": true,
2314
"scripts": {
2415
"build": "yarn build:lib",
2516
"build:dev": "yarn build",
26-
"build:lib": "yarn clean && tsc",
17+
"build:lib": "yarn clean && yarn tsc",
2718
"build:storybook": "build-storybook -c .storybook -o public",
28-
"chromatic": "if-env CIRCLE_BRANCH=master && yarn chromatic:master || yarn chromatic:branch",
29-
"chromatic:base": "CHROMATIC_APP_CODE=nffds42ndde chromatic --build-script-name=build:storybook --exit-zero-on-changes",
30-
"chromatic:branch": "yarn chromatic:base",
31-
"chromatic:master": "yarn chromatic:base --auto-accept-changes",
32-
"clean": "rimraf lib && rimraf node_modules/@types/react && rimraf node_modules/@types/react-native",
19+
"clean": "rimraf lib && yarn rimraf node_modules/@types/react && yarn rimraf node_modules/@types/react-native",
3320
"lint": "eslint --ext .js,.ts,.tsx src",
34-
"prepublish": "yarn build",
35-
"start": "tsc --watch",
21+
"start": "yarn tsc --watch",
3622
"start:storybook": "start-storybook",
37-
"typecheck": "tsc --noEmit --pretty"
23+
"typecheck": "tsc --noEmit --pretty",
24+
"chromatic": "if-env CIRCLE_BRANCH=master && yarn chromatic:master || yarn chromatic:branch",
25+
"chromatic:master": "CHROMATIC_APP_CODE=nffds42ndde ./node_modules/.bin/chromatic --build-script-name=build:storybook --exit-zero-on-changes --auto-accept-changes",
26+
"chromatic:branch": "CHROMATIC_APP_CODE=nffds42ndde ./node_modules/.bin/chromatic --build-script-name=build:storybook --exit-zero-on-changes",
27+
"prepublish": "yarn build"
3828
},
3929
"dependencies": {
40-
"@reach/auto-id": "^0.10.1",
41-
"@reach/menu-button": "^0.10.1",
42-
"@reach/tooltip": "^0.10.1",
43-
"@reach/visually-hidden": "^0.10.1",
44-
"@styled-system/css": "^5.1.5",
45-
"color": "^3.1.2",
30+
"@codesandbox/template-icons": "^1.1.0",
31+
"@reach/auto-id": "^0.7.1",
32+
"@reach/menu-button": "^0.8.5",
33+
"@reach/tooltip": "^0.8.6",
34+
"@reach/visually-hidden": "^0.7.0",
35+
"@styled-system/css": "^5.1.4",
36+
"codesandbox-api": "0.0.24",
37+
"color": "3.1.2",
38+
"date-fns": "^2.8.1",
4639
"deepmerge": "^4.2.2",
4740
"dot-object": "^2.1.3",
41+
"react-router-dom": "^5.1.2",
4842
"react-tagsinput": "^3.19.0",
49-
"styled-components": "^4.4.1"
43+
"styled-components": "^4.4.1",
44+
"typeface-inter": "^3.11.2"
5045
},
5146
"devDependencies": {
5247
"@storybook/addon-a11y": "^5.3.18",
5348
"@storybook/addon-actions": "^5.3.18",
5449
"@storybook/addon-knobs": "^5.3.18",
5550
"@storybook/addon-storysource": "^5.3.18",
5651
"@storybook/addon-viewport": "^5.3.18",
52+
"@storybook/csf": "^0.0.1",
5753
"@storybook/react": "^5.3.18",
58-
"@types/color": "^3.0.1",
59-
"@types/dot-object": "^2.1.0",
60-
"@types/react-tagsinput": "^3.19.7",
61-
"@types/styled-components": "^4.4.3",
54+
"@types/color": "3.0.1",
55+
"@types/lodash": "^4.14.149",
56+
"@types/styled-components": "^4.4.1",
6257
"babel-preset-react-app": "^9.1.2",
63-
"chromatic": "^4.0.2",
58+
"cpx": "^1.5.0",
6459
"if-env": "^1.0.4",
65-
"rimraf": "^3.0.2",
60+
"np": "^5.2.1",
61+
"rimraf": "^3.0.0",
6662
"storybook-addon-styled-component-theme": "^1.3.0",
67-
"typescript": "^3.8.3"
63+
"storybook-chromatic": "^3.5.3",
64+
"typescript": "3.7.4"
6865
},
6966
"peerDependencies": {
7067
"react": "^16.9.0",
7168
"react-dom": "^16.9.0"
72-
},
73-
"engines": {
74-
"node": ">=10.13.0",
75-
"npm": ">=6",
76-
"yarn": ">=1"
7769
}
7870
}

0 commit comments

Comments
 (0)