-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"version": "0.0.1",
"scripts": {
"build": "vite build",
"dev": "vite",
"lint": "eslint -c ./.eslintrc.js --ext .ts,.tsx,.js,.jsx",
"prepare": "husky install",
"serve": "vite preview"
},
"dependencies": {
"axios": "0.21.4",
"classnames": "2.3.1",
"modern-normalize": "1.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "3.24.4"
},
"devDependencies": {
"@rollup/plugin-eslint": "^8.0.1",
"@types/classnames": "^2.3.1",
"@types/react": "17.0.24",
"@types/react-dom": "^17.0.9",
"@vitejs/plugin-react-refresh": "1.3.6",
"@white-matrix/eslint-config": "1.0.9",
"@white-matrix/prettier-config": "1.0.9",
"husky": "7.0.2",
"less": "^4.1.1",
"lint-staged": "11.1.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-high-performance-animation": "^1.5.2",
"stylelint-prettier": "^1.2.0",
"typescript": "4.4.3",
"vite": "2.5.10"
},
"lint-staged": {
"src/**/*.{less,css}": "stylelint",
"src/**/*.{js,jsx,ts,tsx}": "yarn lint"
}
}