generated from wafflestudio/seminar-2024-frontend-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "seminar-2024-frontend-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"types:check": "tsc",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"unused:check": "knip",
"test": "vitest run",
"test:watch": "vitest watch",
"check-all": "yarn types:check && yarn format:check && yarn lint:check && yarn unused:check && yarn test"
},
"dependencies": {
"@vercel/analytics": "1.3.1",
"@vercel/speed-insights": "1.0.12",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@types/node": "22.7.4",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react-swc": "3.7.0",
"@woohm402/eslint-config-react": "0.7.1",
"autoprefixer": "10.4.20",
"eslint": "9.10.0",
"knip": "5.30.2",
"postcss": "8.4.45",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.9",
"tailwindcss": "3.4.11",
"typescript": "5.6.2",
"vite": "5.4.5",
"vitest": "2.1.5"
},
"packageManager": "[email protected]"
}