forked from codesandbox/sandpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.22 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
{
"name": "sandpack",
"version": "1.0.0",
"private": true,
"workspaces": [
"sandpack-client",
"sandpack-react",
"website/*",
"plugins/*"
],
"nohoist": [
"website/docs/**",
"**/html-minifier-terser"
],
"description": "",
"scripts": {
"lint": "eslint '**/*.ts?(x)' --fix",
"format:check": "prettier --check '**/*.{ts,tsx}'",
"format": "prettier --write '**/*.{ts,tsx}'",
"test": "jest sandpack-react",
"cy:open": "cypress open",
"cy:run": "cypress run",
"build": "yarn workspace @codesandbox/sandpack-client run build && yarn workspace @codesandbox/sandpack-react run build",
"prepare": "husky install",
"clean": "yarn workspaces run clean",
"dev:docs": "yarn workspace sandpack-docs start",
"dev:react": "yarn workspace @codesandbox/sandpack-react storybook",
"dev:landing": "yarn workspace sandpack-landing dev -p 3001",
"dev:theme": "yarn workspace sandpack-theme dev -p 3002",
"chromatic:react": "yarn workspace @codesandbox/sandpack-react build-storybook"
},
"repository": {
"type": "git",
"url": "https://github.com/codesandbox/sandpack"
},
"author": "CodeSandbox",
"license": "Apache-2.0",
"devDependencies": {
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@cypress/snapshot": "^2.1.7",
"@octokit/rest": "^18.12.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"babel-jest": "^27.4.5",
"cypress": "^9.1.1",
"esbuild": "^0.12.21",
"eslint": "^7.5.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"gzip-size": "^7.0.0",
"husky": "^7.0.1",
"jest": "^27.4.5",
"lerna": "^4.0.0",
"lerna-changelog": "^2.1.0",
"lint-staged": "^10.5.4",
"package-build-stats": "7.3.6",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.2",
"cypress-real-events": "^1.7.0"
}
}