-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.18 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
{
"name": "consult",
"version": "0.0.0",
"scripts": {
"prepare": "husky install",
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"format": "prettier --write \"src/**/*.ts\" ",
"lint": "eslint ./src --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,scss,less}": [
"prettier --ignore-path ./.prettierignore --write "
],
"*.{js,jsx,ts,tsx}": [
"eslint"
]
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "^6.4.3"
},
"devDependencies": {
"@innei-util/eslint-config-react-ts": "^0.2.1",
"@innei-util/prettier": "^0.8.2",
"@types/node": "18.7.13",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@vitejs/plugin-react": "^2",
"autoprefixer": "10.4.7",
"eslint": "8.20.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"postcss": "8.4.14",
"postcss-import": "14.1.0",
"prettier": "2.7.1",
"tailwindcss": "3.1.6",
"typescript": "4.7.4",
"vite": "3.0.2",
"vite-plugin-checker": "0.5.0",
"vite-tsconfig-paths": "3.5.0"
}
}