-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.76 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.76 KB
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
38
39
40
41
{
"name": "paperclip-monorepo",
"private": true,
"scripts": {
"local:dev": "node scripts/dev-apps.js",
"build": "dotenv -e .env.production -- turbo build",
"start": "dotenv -e .env.production -- turbo start",
"lint": "dotenv -e .env.local -- turbo lint",
"lint:fix": "dotenv -e .env.local -- turbo lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json}\"",
"clean": "find . -name node_modules -o -name .next -o -name .turbo -o -name .tsbuildinfo -o -name dist -type d -prune | xargs rm -rf",
"type-check": "NODE_OPTIONS=--max-old-space-size=4096 dotenv -e .env.local -- turbo run type-check",
"postinstall": "pnpm --filter ./apps/backend prisma generate",
"db:generate": "dotenv -e .env.local -- pnpm --filter ./apps/backend exec prisma generate",
"db:migrate": "dotenv -e .env.local -- pnpm --filter ./apps/backend exec prisma migrate dev",
"db:push": "dotenv -e .env.local -- pnpm --filter ./apps/backend exec prisma db push",
"db:studio": "dotenv -e .env.local -- pnpm --filter ./apps/backend exec prisma studio"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"dotenv-cli": "^7.4.4",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"turbo": "^2.5.1",
"typescript": "^5.3.3"
},
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=20.17.0"
}
}