-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.38 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.38 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "portfolio",
"version": "1.0.13",
"private": true,
"homepage": "https://benjamin.dev",
"dependencies": {
"@react-spring/web": "^9.7.3",
"@testing-library/jest-dom": "^5.17.0",
"gh-pages": "^5.0.0",
"lucide-react": "^0.445.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-lazy-load-image-component": "^1.6.0",
"react-responsive": "^10.0.1",
"react-router-dom": "^6.14.2",
"stackscan": "^0.1.23",
"typescript": "^5.1.6",
"web-vitals": "^5.1.0"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"build:analyze": "npm run build && open build/stats.html",
"preview": "vite preview",
"test": "jest --watchAll=false",
"test:coverage": "jest --watchAll=false --coverage",
"test:coverage:watch": "jest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:report": "playwright show-report",
"prepare": "husky"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@playwright/test": "^1.48.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.7.6",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/react-lazy-load-image-component": "^1.5.3",
"@types/react-responsive": "^8.0.8",
"@vitejs/plugin-react": "^5.1.0",
"autoprefixer": "^10.4.21",
"cross-env": "^7.0.3",
"husky": "^9.1.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^30.2.0",
"postcss": "^8.5.6",
"rollup-plugin-visualizer": "^6.0.5",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.17",
"terser": "^5.44.0",
"ts-jest": "^29.2.5",
"typescript": "^5.1.6",
"vite": "^7.1.12",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-svgr": "^4.5.0",
"vite-tsconfig-paths": "^5.1.4"
},
"overrides": {
"typescript": "^5.1.6"
},
"engines": {
"node": ">=22.0.0"
}
}