-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.03 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "find . -name node_modules -o -name .next -o -name dist -type d -prune | xargs rm -rf",
"dev": "turbo run dev",
"generate": "turbo run db:generate",
"type-check": "turbo type-check",
"lint": "turbo run lint",
"lint:strict": "eslint --max-warnings=0 apps/**/*.{ts,tsx}",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:check": "prettier -c \"**/*.{ts,tsx,md}\"",
"test": "turbo run test"
},
"devDependencies": {
"@workspace/eslint-config": "workspace:*",
"@workspace/prettier-config": "workspace:*",
"@workspace/tsconfig": "workspace:*",
"eslint": "^8.48.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.10",
"turbo": "1.13.2"
},
"name": "workspace",
"packageManager": "pnpm@8.9.1O",
"engines": {
"node": ">=18"
},
"dependencies": {
"next-runtime-env": "^3.2.0"
}
}