-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.19 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.19 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
{
"name": "skill-vetter-web",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "concurrently -n frontend,backend -c blue,green \"vite\" \"tsx watch server/index.ts\"",
"dev:server": "tsx watch server/index.ts",
"dev:client": "vite",
"dev:cf": "npx wrangler pages dev -- npx vite dev",
"build": "tsc -b && vite build",
"preview:cf": "npx wrangler pages dev ./dist",
"deploy": "vite build && npx wrangler pages deploy ./dist --project-name skill-vetter-web",
"start": "NODE_ENV=production tsx server/index.ts"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.19",
"dotenv": "^17.3.1",
"express": "^4.21.2",
"lucide-react": "^0.469.0",
"openai": "^4.85.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.3",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "~5.7.0",
"vite": "^6.0.0"
}
}