-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.73 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
{
"name": "minisitio-rodrigo",
"version": "1.0.0",
"private": true,
"packageManager": "npm@9.9.4",
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "vite",
"build": "npm run build:client && npm run build:server && npm run prerender && npm run verify:prerender && npm run verify:http",
"build:client": "vite build",
"build:server": "vite build --ssr src/entry-server.tsx --outDir dist-ssr",
"prerender": "node scripts/prerender.mjs",
"verify:prerender": "node scripts/verify-prerender.mjs",
"verify:http": "node scripts/verify-http.mjs",
"preview": "vite preview",
"typecheck": "tsc -b --pretty false",
"lint": "eslint \"src/**/*.{ts,tsx}\" vite.config.ts vitest.config.ts",
"test": "vitest",
"test:run": "vitest run",
"ci": "npm run typecheck && npm run lint && npm run test:run && npm run build"
},
"dependencies": {
"framer-motion": "^10.18.0",
"lucide-react": "^0.487.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-icons": "^5.6.0",
"react-router-dom": "^7.18.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@vitejs/plugin-react": "^6.0.4",
"autoprefixer": "^10.5.0",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.8.0",
"jsdom": "^26.1.0",
"postcss": "^8.5.23",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.10",
"vite": "^8.1.5"
}
}