-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.7 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "discographic",
"version": "0.3.4",
"type": "module",
"packageManager": "pnpm@10.22.0",
"description": "Self-hosted Discogs collection manager for vinyl collectors",
"author": "Simon Blanco",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SimonBlancoE/discographic.git"
},
"homepage": "https://github.com/SimonBlancoE/discographic",
"keywords": [
"discogs",
"vinyl",
"collection",
"music",
"dashboard",
"self-hosted"
],
"engines": {
"node": ">=22 <23"
},
"scripts": {
"dev": "vite",
"build": "pnpm run build:app && pnpm run build:server",
"build:app": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"preview": "vite preview",
"dev:server": "tsx watch server/index.ts",
"server": "tsx server/index.ts",
"start": "node dist/server/start.js",
"typecheck": "tsc -p tsconfig.json",
"scan:js-sources": "tsx scripts/scan-javascript-sources.ts",
"test:upgrade-smoke": "tsx scripts/upgrade-smoke.ts",
"test:upgrade-smoke:docker": "DISCOGRAPHIC_UPGRADE_SMOKE_SKIP_DOCKER=false DISCOGRAPHIC_UPGRADE_SMOKE_REQUIRE_DOCKER=true tsx scripts/upgrade-smoke.ts",
"verify:upgrade-path": "pnpm run scan:js-sources && pnpm run typecheck && pnpm run test && pnpm run build && pnpm run test:upgrade-smoke:docker",
"verify": "pnpm run scan:js-sources && pnpm run typecheck && pnpm run test && pnpm run build && pnpm run test:upgrade-smoke",
"test": "vitest run",
"sandcastle": "tsx .sandcastle/main.ts",
"test:instance:start": "bash scripts/test-instance.sh start",
"test:instance:stop": "bash scripts/test-instance.sh stop"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"better-sqlite3": "^11.0.0",
"better-sqlite3-session-store": "^0.1.0",
"csv-stringify": "^6.5.0",
"ecb-exchange-rates-ts": "^0.1.13",
"express": "^4.19.2",
"express-session": "^1.19.0",
"html-to-image": "^1.11.13",
"multer": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.0",
"recharts": "^2.12.0",
"sharp": "^0.34.5",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@ai-hero/sandcastle": "0.5.10",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^4.17.21",
"@types/express-session": "^1.19.0",
"@types/lodash": "^4.17.24",
"@types/multer": "^2.1.0",
"@types/node": "^22.19.17",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.19",
"jsdom": "^24.1.3",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vite": "^6.0.0",
"vitest": "^4.1.2"
}
}