-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.28 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
{
"name": "codemaster-academy",
"private": true,
"version": "1.0.0",
"description": "CodeMaster —— 零基础到开源架构师的交互式全栈实战学院",
"license": "MIT",
"author": "intp41455",
"type": "module",
"scripts": {
"dev": "tsx server.ts",
"build": "vite build && esbuild server.ts --bundle --platform=node --format=cjs --packages=external --sourcemap --outfile=dist/server.cjs",
"start": "node dist/server.cjs",
"clean": "rm -rf dist server.js",
"lint": "tsc --noEmit",
"test": "tsx scripts/test_platform.ts"
},
"dependencies": {
"@google/genai": "^2.4.0",
"@supabase/supabase-js": "^2.117.0",
"@tailwindcss/vite": "^4.3.3",
"@vitejs/plugin-react": "^6.1.1",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"react": "^19.0.1",
"react-dom": "^19.0.1",
"vite": "^8.3.0"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.21",
"@types/node": "^22.20.4",
"@types/react": "^19.3.0",
"@types/react-dom": "^19.3.0",
"autoprefixer": "^10.4.21",
"esbuild": "^0.28.2",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.15",
"typescript": "^7.0.2"
},
"allowScripts": {
"esbuild@0.28.2": true
}
}