-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 888 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 888 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
{
"name": "luv",
"private": true,
"scripts": {
"build": "turbo build",
"build:client": "dotenv -- turbo run build --filter=client",
"build:client-renewal": "turbo run build --filter=client-renewal",
"build:admin": "turbo run build --filter=admin",
"dev": "turbo dev",
"dev:client": "dotenv -- turbo run dev --filter=client",
"dev:client-renewal": "dotenv -- turbo run dev --filter=client-renewal",
"dev:admin": "dotenv -- turbo run dev --filter=admin",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"dotenv-cli": "^7.4.1",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"turbo": "latest"
},
"packageManager": "pnpm@8.9.0",
"engines": {
"node": ">=18"
}
}