-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.23 KB
/
package.json
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
{
"name": "lms-core",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"lint-tsc-web": "pnpm run --filter=web lint-tsc",
"lint-tsc-api": "pnpm run --filter=api lint-tsc",
"format": "prettier --write \"**/*.{ts,tsx,md,js,jsx,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,js,jsx,json}\"",
"generate:client": "pnpm run --filter=web generate:client",
"db:generate": "pnpm run --filter=api db:generate",
"db:migrate": "pnpm run --filter=api db:migrate",
"db:seed": "pnpm run --filter=api db:seed",
"test:web": "pnpm run --filter=web test",
"test:api": "pnpm run --filter=api test",
"test:web:e2e": "pnpm run --filter=web test:e2e",
"test:api:e2e": "pnpm run --filter=api test:e2e",
"start:debug": "pnpm run --filter=api start:debug",
"prepare": "husky",
"gpush": "git push --no-verify"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "0.6.9",
"turbo": "^2.2.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}