-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.47 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": "visual-editor",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview --port 8080",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "npx --no-install commitlint --edit $1"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "npm run lint",
"src/**/*.{js,jsx,tsx,ts,scss,json}": [
"npx prettier --write"
]
},
"dependencies": {
"@ant-design/icons": "^4.5.0",
"antd": "^4.12.3",
"classnames": "^2.2.6",
"deepcopy": "^2.1.0",
"react": "^17.0.0",
"react-color": "^2.19.3",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/classnames": "^2.2.11",
"@types/node": "^14.14.37",
"@types/react": "^17.0.2",
"@types/react-color": "^3.0.4",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"@vitejs/plugin-react-refresh": "^1.3.1",
"eslint": "^7.30.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"less": "^4.1.1",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"sass": "^1.32.8",
"typescript": "^4.1.2",
"vite": "^2.0.0-beta.5",
"vite-plugin-imp": "^2.0.5"
}
}