forked from codesandbox/sandpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"name": "sandpack",
"version": "1.0.0",
"private": true,
"workspaces": [
"sandpack-client",
"sandpack-react",
"sandpack-playground"
],
"description": "",
"scripts": {
"lint": "eslint '**/*.ts?(x)' --fix",
"format": "prettier --write '**/*.ts?(x)'",
"build": "yarn workspaces run build",
"prepare": "husky install",
"clean": "yarn workspaces run clean"
},
"repository": {
"type": "git",
"url": "https://github.com/codesandbox/sandpack"
},
"author": "CodeSandbox",
"license": "GPL-2.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"esbuild": "^0.12.21",
"eslint": "^7.5.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react-app": "^6.0.0",
"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",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
}
}