-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.91 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
{
"name": "kivvi",
"version": "0.1.0",
"private": true,
"description": "The ERP that knows things have a history. AI-first, Swiss-native ERP for refurbishers, Brockenhäuser, repair workshops, and vintage shops.",
"license": "MIT",
"author": "RevampIT <hello@revampit.ch> (https://revampit.ch)",
"homepage": "https://kivvi.ch",
"repository": {
"type": "git",
"url": "git+https://github.com/g-but/kivvi.git"
},
"bugs": {
"url": "https://github.com/g-but/kivvi/issues"
},
"keywords": [
"erp",
"circular-economy",
"secondhand",
"refurbishing",
"swiss",
"qr-bill",
"nextjs",
"drizzle",
"ai"
],
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"test": "turbo test",
"type-check": "turbo type-check",
"verify": "npm run format:check && pnpm lint && pnpm type-check && pnpm test",
"smoke:production": "tsx scripts/production-smoke.ts",
"clean": "turbo clean && rm -rf node_modules",
"db:generate": "turbo db:generate",
"db:migrate": "turbo db:migrate",
"db:studio": "pnpm --filter @kivvi/database db:studio",
"format": "prettier --write .",
"prepare": "husky",
"format:check": "prettier --check ."
},
"devDependencies": {
"@types/node": "^26.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.3",
"prettier": "3.9.6",
"tsx": "^4.21.0",
"turbo": "^2.0.0",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20"
},
"lint-staged": {
"apps/web/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"packages/**/*.{ts,tsx}": [
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"@types/pdfkit": "^0.17.4",
"pdfkit": "^0.17.2",
"recharts": "^3.7.0",
"swissqrbill": "^4.2.1"
}
}