-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.32 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.32 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
{
"name": "@pricey/root",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Smart receipt scanning and price comparison to help you save money on every purchase",
"repository": {
"type": "git",
"url": "git+https://github.com/mpwg/Pricey.git"
},
"license": "AGPL-3.0",
"author": "Matthias Wallner-Géhri",
"engines": {
"node": ">=24.10.0",
"pnpm": ">=10.19.0"
},
"packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd",
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,mdx,css,yaml,yml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,mdx,css,yaml,yml}\"",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"test:ui": "turbo run test:ui",
"clean": "turbo clean && rm -rf node_modules",
"db:migrate": "pnpm --filter @pricey/database db:migrate",
"db:seed": "pnpm --filter @pricey/database db:seed",
"db:studio": "pnpm --filter @pricey/database db:studio",
"db:reset": "pnpm --filter @pricey/database db:reset",
"docker:dev": "docker-compose up -d",
"docker:dev:down": "docker-compose down",
"docker:dev:ollama": "docker-compose --profile ollama up -d",
"docker:dev:ollama:down": "docker-compose --profile ollama down",
"docker:prod": "docker-compose -f docker-compose.prod.yml up -d",
"docker:prod:down": "docker-compose -f docker-compose.prod.yml down",
"minio:setup": "bash scripts/setup-minio.sh",
"ollama:mac": "bash scripts/start-ollama-mac.sh"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/node": "^24.9.2",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitest/coverage-v8": "^4.0.6",
"@vitest/ui": "^4.0.6",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"prettier": "^3.6.2",
"turbo": "^2.6.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vitest": "^4.0.6"
}
}