-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.45 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
{
"name": "@codeblitz/codeblitz-docs",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/opensumi/codeblitz"
},
"bugs": {
"url": "https://github.com/opensumi/codeblitz/issues"
},
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^4.1.2",
"gh-pages": "^3.1.0",
"husky": "^4.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.0"
},
"scripts": {
"start": "cd packages/site && yarn run develop",
"build": "cd packages/site && yarn run build",
"deploy": "yarn build && gh-pages -d site/public",
"release": "yarn workspace @codeblitz/gatsby-theme run release",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,less}\"",
"lint": "eslint . --ext '.js,.jsx,.ts,.tsx'",
"lint:fix": "eslint . --ext '.js,.jsx,.ts,.tsx' --fix",
"tsc": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"resolutions": {
"@babel/plugin-transform-spread": "7.12.1",
"@babel/standalone": "7.12.6"
},
"packageManager": "[email protected]"
}