-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 725 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 725 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
{
"name": "simple-resume-site",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite-react-ssg dev",
"build": "vite-react-ssg build",
"preview": "vite preview",
"lint": "biome check",
"lint:fix": "npm run lint -- --write",
"prepare": "husky"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.12",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwindcss": "^4.1.12"
},
"lint-staged": {
"*": "npm run lint:fix -- --no-errors-on-unmatched"
},
"devDependencies": {
"@biomejs/biome": "2.2.2",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"typescript": "~5.9.2",
"vite": "^7.1.4",
"vite-react-ssg": "^0.8.8"
}
}