-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.79 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
{
"name": "stickerdex",
"version": "0.1.0",
"private": true,
"description": "Self-hosted, open-source digital sticker album and tournament companion for the Panini-style FIFA World Cup 2026 collection.",
"license": "MIT",
"author": "Christian Abele",
"homepage": "https://github.com/ChristianAbele02/StickerDex#readme",
"repository": {
"type": "git",
"url": "https://github.com/ChristianAbele02/StickerDex.git"
},
"bugs": {
"url": "https://github.com/ChristianAbele02/StickerDex/issues"
},
"keywords": [
"world-cup-2026",
"panini",
"sticker-album",
"self-hosted",
"football",
"soccer",
"fastify",
"react",
"typescript",
"sqlite"
],
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev": "concurrently -k -n api,web -c blue,magenta \"npm run dev --workspace=backend\" \"npm run dev --workspace=frontend\"",
"dev:api": "npm run dev --workspace=backend",
"dev:web": "npm run dev --workspace=frontend",
"build": "npm run build --workspace=backend && npm run build --workspace=frontend",
"test": "npm run test --workspace=backend && npm run test --workspace=frontend",
"lint": "npm run lint --workspace=backend && npm run lint --workspace=frontend",
"generate-dataset": "npm run generate-dataset --workspace=backend",
"desktop:install": "npm --prefix desktop install",
"desktop:typecheck": "npm --prefix desktop run typecheck",
"desktop:start": "npm run build --workspace=frontend && npm --prefix desktop run start",
"desktop:build": "npm run build --workspace=frontend && npm --prefix desktop run build",
"dist:win": "npm run build --workspace=frontend && npm --prefix desktop run dist"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"concurrently": "^10.0.3"
}
}