-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) Β· 1007 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) Β· 1007 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
33
34
35
36
37
38
39
{
"name": "website",
"private": true,
"version": "1.0.0",
"type": "module",
"homepage": "https://tom-devtech.com/",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"test": "vite test",
"lint": "npx eslint ."
},
"dependencies": {
"gh-pages": "^5.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.30.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.21",
"esbuild": "^0.25.1",
"eslint": "^8.44.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.1.6",
"vite": "^6.2.3"
}
}