-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 850 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 850 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
{
"name": "react-ts-initial-project",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build --base=./",
"preview": "vite preview",
"deploy": "npm run build && npx gh-pages -d dist",
"update-patch": "npm version --force --no-git-tag-version patch",
"update-minor": "npm version --force --no-git-tag-version minor",
"update-major": "npm version --force --no-git-tag-version major"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "4.3.3",
"autoprefixer": "^10.4.20",
"gh-pages": "6.2.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "5.6.3",
"vite": "^5.4.10"
}
}