-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.97 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.97 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "fintrack",
"version": "0.1.0",
"description": "Personal finance tracking application.",
"contributors": [
{
"name": "Makar Dzhehur"
},
{
"name": "Bohdan Matula"
}
],
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.9.2",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prepare": "husky",
"setup": "turbo run build --filter=@fintrack/types",
"dev": "npm run setup && turbo run dev",
"dev:web": "turbo run dev --filter=fintrack-web",
"dev:api": "turbo run dev --filter=fintrack-api",
"dev:bot": "turbo run dev --filter=fintrack-bot",
"test:api:prod": "npm --prefix apps/api run prod",
"api:prisma:generate": "npm --prefix apps/api run prisma:generate",
"api:prisma:migrate:dev": "npm --prefix apps/api run prisma:migrate:dev",
"api:prisma:migrate:deploy": "npm --prefix apps/api run prisma:migrate:deploy",
"api:prisma:studio": "npm --prefix apps/api run prisma:studio",
"api:prisma:seed": "npm --prefix apps/api run prisma:seed",
"build": "turbo run build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"fix": "npm run format && npm run lint:fix",
"check": "npm run format:check && npm run lint",
"tidy": "npm run fix && npm run check",
"check-types": "turbo run check-types",
"test:api": "npm --prefix apps/api run test",
"test:web": "npm --prefix apps/web run test",
"test": "npm run test:api && npm run test:web",
"dump": "bash scripts/codebase-dump.sh",
"dump:api": "bash scripts/codebase-dump.sh -d apps/api",
"dump:web": "bash scripts/codebase-dump.sh -d apps/web",
"dump:bot": "bash scripts/codebase-dump.sh -d apps/bot",
"dump:db": "bash scripts/db-dump.sh -e apps/api/.env",
"restore:db": "bash scripts/db-restore.sh -e apps/api/.env",
"restore:db:reset": "bash scripts/db-restore.sh -e apps/api/.env --reset"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,md,yml}": [
"prettier --write"
]
},
"dependencies": {
"axios": "^1.15.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.6.2",
"turbo": "^2.5.6",
"typescript": "5.9.2",
"typescript-eslint": "^8.52.0"
},
"overrides": {
"@types/express": "4.17.21",
"@types/express-serve-static-core": "4.19.0",
"next": "^16.2.3",
"@prisma/client": "^6.19.3",
"prisma": "^6.19.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.57.1",
"@tailwindcss/oxide-linux-x64-gnu": "*",
"lightningcss-linux-x64-gnu": "*"
}
}