-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.82 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.82 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
{
"$schema": "https://json.schemastore.org/package.json",
"version": "1.0.0",
"description": "Ticket booking, redefined.",
"repository": {
"type": "git",
"url": "git+https://github.com/grindarius/reeba.git"
},
"keywords": [
"ticket",
"booking",
"concert",
"shows",
"community"
],
"engines": {
"node": ">16.0.0",
"npm": ">=7",
"pnpm": ">=6.26.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev:backend": "pnpm build:common && cd packages/backend && cross-env BACKEND_TEST_ENV=false pnpm watch",
"dev:frontend": "cd packages/frontend && pnpm dev",
"dev:common": "cd packages/common && pnpm watch",
"build:backend": "cd packages/backend && pnpm build",
"build:frontend": "cd packages/frontend && pnpm build",
"build:common": "cd packages/common && pnpm build",
"lint": "eslint **/*.{ts,vue}",
"lint:css": "pnpm exec ts-node packages/scripts/src/lint-css.ts",
"test": "pnpm build:common && pnpm clear:db && cross-env BACKEND_TEST_ENV=true pnpm exec c8 tap --node-arg=--loader=ts-node/esm --rcfile=.taprc.yaml",
"seed": "pnpm clear:db && pnpm exec ts-node packages/scripts/src/seed.ts",
"clear:uploads": "pnpm exec ts-node packages/scripts/src/clear-uploads-folder.ts",
"clear:db": "pnpm exec ts-node packages/scripts/src/clear-db.ts",
"migrate:password": "node ./packages/scripts/src/password-migrate-preparation.mjs && node ./packages/scripts/src/password-migrate.mjs"
},
"author": "ReebA Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/grindarius/reeba/issues"
},
"homepage": "https://github.com/grindarius/reeba#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.2",
"cross-env": "^7.0.3",
"tsx": "^4.19.2",
"typescript": "~5.5",
"vitest": "^2.1.8"
}
}