-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.84 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "jeromewolff.github.io",
"version": "1.0.0",
"type": "module",
"private": false,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"framer-motion": "^12.0.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sass": "^1.83.4",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/cli": "^4.0.3",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.0.3",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^22.13.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitest/coverage-v8": "^3.0.4",
"ajv": "^8.17.1",
"autoprefixer": "^10.4.20",
"cookie": "^1.0.2",
"jsdom": "^26.0.0",
"nth-check": "^2.1.1",
"postcss": "^8.5.1",
"postcss-import": "^16.1.0",
"tailwindcss": "^4.0.3",
"typescript": "^5.5.4",
"vite": "^6.0.11",
"vitest": "^3.0.4"
},
"overrides": {
"typescript": "^5.5.4"
},
"scripts": {
"start": "vite",
"dev": "vite dev",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage --watch=false"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}