-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 KB
/
package.json
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
47
48
49
{
"name": "react-portfolio-redeploy",
"version": "2.0.0",
"private": true,
"dependencies": {
"bootstrap": "^5.1.3",
"react": "^18.2.0",
"react-bootstrap": "^2.0.2",
"react-dom": "^18.2.0",
"react-router-dom": "^6.0.2",
"typed.js": "^2.0.12",
"typescript": "^4.5.2"
},
"scripts": {
"dev": "vite",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"build": "tsc && vite build && cp build/index.html build/404.html",
"preview": "vite preview",
"start": "vite"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.9",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.0.11",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.0.4",
"gh-pages": "^6.0.0",
"happy-dom": "^11.0.2",
"vite": "^4.4.9",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.3"
}
}