-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 822 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 822 Bytes
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
{
"name": "wafflestudio-2025-fe-seminar-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "biome lint .",
"check:types": "tsc",
"check:format": "biome check .",
"check:unused": "knip",
"check-all": "yarn check:types && yarn check:format && yarn check:unused"
},
"dependencies": {
"axios": "^1.12.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.9.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.15.29",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react-swc": "^3.9.0",
"knip": "^5.59.1",
"typescript": "~5.8.3",
"vite": "^6.3.5"
}
}