-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.59 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.59 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
{
"name": "@adenta/website",
"version": "0.0.1",
"type": "module",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"dev": "concurrently \"pnpm:dev:vite\" \"pnpm:dev:api\"",
"dev:vite": "vite",
"dev:api": "tsx --env-file=.env ./src/server/server.ts",
"build": "vite build",
"build:watch": "vite build --watch",
"build:serve": "VITE_PREPROD=true npx http-server ./dist",
"prepare:email": "tsx --env-file=.env ./src/server/prepare.ts"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@heroicons/react": "^2.2.0",
"@hono/node-server": "1.15.0",
"@tanstack/react-router": "^1.122.0",
"@vercel/analytics": "^1.5.0",
"@vercel/node": "^5.3.11",
"@vercel/speed-insights": "^1.2.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"framer-motion": "^12.6.0",
"hono": "^4.8.12",
"nodemailer": "^7.0.5",
"react": "19.0.0",
"react-dom": "19.0.0",
"std-env": "^3.9.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.19.0",
"vite": "^7.0.0",
"vite-plugin-node-polyfills": "^0.24.0",
"vite-plugin-sitemap": "^0.8.2"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/nodemailer": "^6.4.17",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"concurrently": "^7.6.0",
"gray-matter": "^4.0.3",
"juice": "^11.0.1",
"tsx": "^4.20.0",
"vite-plugin-vercel": "^9.0.7",
"vitest": "^3.2.4"
}
}