-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1010 Bytes
/
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
{
"name": "fix-lab-project",
"version": "1.0.0",
"description": "",
"workspaces": [
"apps/*"
],
"scripts": {
"db:generate": "pnpm --filter server db:generate",
"db:push": "pnpm --filter server db:push",
"db:seed": "pnpm --filter server db:seed",
"studio": "pnpm --filter server studio",
"dev": "pnpm run --parallel dev",
"build": "pnpm run --parallel build",
"start": "pnpm run --parallel start",
"build:server": "pnpm --filter server build",
"build:client": "pnpm --filter client build",
"build:admin": "pnpm --filter admin build",
"start:server": "pnpm --filter server start:prod",
"start:client": "pnpm --filter client start:prod",
"start:admin": "pnpm --filter admin start",
"lint": "pnpm --parallel lint",
"preinstall": "npx only-allow pnpm"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0"
},
"packageManager": "pnpm@8.9.0"
}