-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.55 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.55 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
42
43
44
45
46
47
{
"name": "zenstack-prisma-nextjs-monorepo",
"version": "0.3.0",
"private": true,
"type": "module",
"engines": {
"node": ">=18.*"
},
"packageManager": "pnpm@10.10.0",
"scripts": {
"pnpm:install": "pnpm install",
"prisma:studio": "pnpm -F @erikdakoda/database prisma:studio",
"prisma:push": "pnpm -F @erikdakoda/database prisma:push",
"prisma:deploy": "pnpm -F @erikdakoda/database prisma:deploy",
"zen:generate": "pnpm -F @erikdakoda/database zen:generate",
"clean": "turbo run clean && rm -rf node_modules/",
"build": "turbo run build",
"build-quick": "turbo run build-quick",
"dev": "turbo run dev",
"debug": "turbo run debug",
"start": "turbo run start",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"ts:check": "turbo run ts:check",
"npm:version": "turbo run npm:version -- 0.3.0",
"syncpack:list": "syncpack list-mismatches",
"syncpack:fix": "syncpack fix-mismatches",
"syncpack:update": "syncpack update --types 'prod,dev'"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.32.1",
"@typescript-eslint/parser": "8.32.1",
"@vitejs/plugin-react": "4.4.1",
"default-configs": "workspace:*",
"dotenv": "16.5.0",
"eslint": "8.57.1",
"eslint-config-next": "14.2.28",
"eslint-config-prettier": "9.1.0",
"eslint-config-turbo": "2.3.3",
"eslint-plugin-jsdoc": "48.11.0",
"eslint-plugin-prettier": "5.2.6",
"prettier": "3.5.3",
"syncpack": "13.0.4",
"turbo": "2.5.3",
"typescript": "5.8.3"
}
}