-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 KB
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
{
"name": "@teefing/vite-react",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"prepare": "husky install",
"commit": "git add . && git-cz",
"cm": "pnpm commit",
"cp": "pnpm commit && git push"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint"
]
},
"dependencies": {
"classnames": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"recoil": "^0.6.1"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@commitlint/cz-commitlint": "^16.2.3",
"@teefing/eslint-config": "^0.0.5",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/react-test-renderer": "^17.0.1",
"@vitejs/plugin-react": "^1.0.7",
"autoprefixer": "^10.4.2",
"c8": "^7.11.0",
"commitizen": "^4.2.4",
"eslint": "^8.11.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"postcss": "^8.4.12",
"react-router-dom": "^6.2.2",
"react-test-renderer": "^17.0.2",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.4",
"unplugin-auto-import": "^0.6.6",
"vite": "^2.8.0",
"vite-plugin-pwa": "^0.11.13",
"vite-tsconfig-paths": "^3.4.1",
"vitest": "^0.7.4"
}
}