This repository has been archived by the owner on Aug 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
55 lines (55 loc) · 1.59 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
{
"name": "@antv/gatsby-theme-antv",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/antvis/gatsby-theme-antv"
},
"bugs": {
"url": "https://github.com/antvis/gatsby-theme-antv/issues"
},
"license": "MIT",
"workspaces": [
"@antv/gatsby-theme-antv",
"example"
],
"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": "yarn workspace example develop",
"build": "yarn workspace example build",
"deploy": "yarn build && gh-pages -d example/public",
"test": "yarn workspace @antv/gatsby-theme-antv test",
"release": "yarn workspace @antv/gatsby-theme-antv 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": {
"monaco-editor": "0.21.3",
"@babel/plugin-transform-spread": "7.12.1",
"@babel/standalone": "7.12.6",
"@types/react": "^17.0.38",
"sharp": "^0.29.0"
}
}