-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 953 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 953 Bytes
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
{
"name": "trassfa",
"private": true,
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"packageManager": "pnpm@11.1.1",
"scripts": {
"dev": "turbo dev",
"dev:api": "turbo dev --filter=@linkpay/api",
"dev:web": "turbo dev --filter=@linkpay/web",
"build": "turbo build",
"typecheck": "turbo typecheck",
"lint": "eslint .",
"format": "prettier --check .",
"format:write": "prettier --write .",
"check": "pnpm format && pnpm typecheck && pnpm lint && pnpm test",
"test": "turbo test",
"auth:generate": "turbo auth:generate --filter=@linkpay/api",
"db:generate": "turbo db:generate --filter=@linkpay/api",
"db:migrate": "turbo db:migrate --filter=@linkpay/api"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"eslint": "^9.36.0",
"globals": "^17.8.0",
"prettier": "^3.6.2",
"turbo": "^2.9.16",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0"
}
}