-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.64 KB
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
44
45
46
{
"name": "vite-react-ts-app",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"build": "vite build",
"build:dev": "vite build --mode development",
"build:staging": "vite build --mode staging",
"build:prod": "vite build --mode production",
"serve:dev": "vite preview --port 5001",
"serve:staging": "vite preview --port 5002",
"serve:prod": "vite preview --port 5003",
"docker:build:dev": "docker build --build-arg BUILD_ENV=development -t vite-app-dev .",
"docker:build:staging": "docker build --build-arg BUILD_ENV=staging -t vite-app-staging .",
"docker:build:prod": "docker build --build-arg BUILD_ENV=production -t vite-app-prod .",
"docker:run:dev": "docker run -p 3001:80 vite-app-dev",
"docker:run:staging": "docker run -p 3002:80 vite-app-staging",
"docker:run:prod": "docker run -p 3000:80 vite-app-prod",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx}'"
},
"dependencies": {
"axios": "^1.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.5.3",
"typescript": "^5.0.0",
"vite": "^5.0.0"
}
}