-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.28 KB
/
package.json
File metadata and controls
38 lines (38 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
{
"name": "gitdeck",
"version": "1.0.2",
"private": true,
"type": "module",
"description": "Local multi-account dashboard for GitHub and Forgejo-compatible forges (Codeberg, self-hosted).",
"scripts": {
"api": "tsx watch src/server.ts",
"dev": "concurrently \"npm:api\" \"vite --host 127.0.0.1\"",
"build": "esbuild src/server.ts --bundle --platform=node --format=esm --target=node22 --outfile=dist/server.js && vite build",
"preview": "vite preview --host 127.0.0.1",
"serve": "node dist/server.js",
"start": "node dist/server.js",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"version": "node scripts/sync-version.js && conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md src/version.ts"
},
"dependencies": {
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router-dom": "^7.14.2"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.2.1",
"conventional-changelog": "^7.2.0",
"conventional-changelog-angular": "^8.3.1",
"esbuild": "^0.28.0",
"jsdom": "^29.0.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^8.0.9",
"vitest": "^4.1.5"
}
}