-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.58 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "dotenv -- turbo run dev",
"necode:build": "turbo run necode:build",
"wsserver:build": "turbo run wsserver:build",
"ssl-proxy": "npx local-ssl-proxy --source 3010 --target 3000 --key .dev-ssl-certs/localhost-key.pem --cert .dev-ssl-certs/localhost.pem",
"db:migrate:dev": "dotenv -- turbo run db:migrate:dev",
"db:seed": "dotenv -- turbo run db:seed",
"db:push": "dotenv -- turbo run db:push",
"validate": "turbo run validate",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"vercel-build": "turbo run vercel-build",
"postinstall": "syncpack list-mismatches",
"sync-packages": "syncpack fix-mismatches"
},
"prisma": {
"schema": "packages/database/prisma/schema.prisma",
"seed": "ts-node --transpile-only packages/database/src/seed.ts"
},
"devDependencies": {
"@grncdr/eslint-plugin-react-hooks": "5.0.0-p30d423311.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"dotenv-cli": "^7.3.0",
"eslint": "^8.32.0",
"eslint-config-next": "^13.1.5",
"next": "^13.1.2",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.2",
"syncpack": "^8.4.11",
"ts-node": "^10.9.1",
"turbo": "^1.10.14"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"@prisma/[email protected]": "patches/@[email protected]"
}
}
}