-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.72 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
{
"name": "konva-devtool",
"version": "0.0.1",
"description": "konva devtool",
"main": "devtools/ui/ui.js",
"repository": {
"type": "git",
"url": "git@github.com:yinguangyao/konva-devtool.git"
},
"keywords": [
"konva",
"devtool"
],
"author": "gloryyin",
"license": "MIT",
"scripts": {
"start": "cross-env ENV=development vite",
"watch": "cross-env ENV=development vite build --watch",
"build": "cross-env ENV=production vite build",
"preview": "vite preview",
"commit": "lint-staged && git-cz"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,jsx}": [
"eslint"
]
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"antd": "^4.21.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-json-view": "^1.21.3"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@vitejs/plugin-react": "^2.0.0",
"babel-loader": "^8.2.3",
"core-js": "^3.20.1",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.6.0",
"git-cz": "^4.7.6",
"husky": "^4.3.8",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"style-loader": "^3.3.1",
"vite": "^3.2.5",
"vite-plugin-imp": "^2.2.0",
"vite-plugin-static-copy": "^0.13.0"
}
}