-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.45 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
{
"name": "portfolio",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "NODE_ENV=development node server",
"build": "npm run build:client && npm run build:server",
"build:client": "tsc && vite build --outDir dist/client",
"build:server": "tsc && vite build --outDir dist/server --ssr src/entry-server.tsx",
"generate": "vite build --outDir dist/static && npm run build:server && tsx prerender",
"serve": "NODE_ENV=production node server",
"serve-static": "serve dist/static",
"preview": "vite preview"
},
"dependencies": {
"@emailjs/browser": "^3.12.1",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"express": "^4.18.2",
"markdown-it": "^14.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.21.3",
"react-router-typesafe": "^1.4.4",
"sirv": "^2.0.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/express": "^4.17.21",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.11.16",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/showdown": "^2.0.6",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.33",
"serve": "^14.2.1",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vite": "^7.2.7"
},
"engines": {
"node": "18.17.1"
}
}