-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.16 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
{
"scripts": {
"dev": "next dev -H 0.0.0.0 -p 2607",
"dev:frontend": "next dev -H 0.0.0.0 -p 2607",
"dev:backend": "node scripts/cargo.js run --bin starcdn",
"dev:all": "npx concurrently -k -n \"FRONTEND,BACKEND\" -c \"cyan,green\" \"npm run dev:frontend\" \"npm run dev:backend\"",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"rust:test": "node scripts/cargo.js test",
"rust:fmt": "node scripts/cargo.js fmt --check",
"rust:clippy": "node scripts/cargo.js clippy --all-targets -- -D warnings"
},
"dependencies": {
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.5.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.24.0",
"next": "^16.2.0",
"postcss": "^8.5.16",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.2",
"typescript": "^5.8.0"
},
"devDependencies": {
"concurrently": "^9.2.3",
"eslint": "^9.39.0",
"eslint-config-next": "^16.2.0"
}
}