-
-
Notifications
You must be signed in to change notification settings - Fork 215
/
package.json
84 lines (84 loc) · 2.78 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@your-org/db-main-prisma",
"version": "2.14.1",
"private": true,
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"author": {
"name": "Vanvelthem Sébastien",
"url": "https://github.com/belgattitude"
},
"license": "MIT",
"homepage": "https://github.com/belgattitude/nextjs-monorepo-example",
"repository": {
"type": "git",
"url": "https://github.com/belgattitude/nextjs-monorepo-example",
"directory": "packages/db-main-prisma"
},
"scripts": {
"build": "echo \"Unrequired and disabled when using tsonfig paths aliases, run 'build-force' to test a build.\"",
"build-force": "echo \"'build-force' not working yet for prisma.\"",
"clean": "rimraf ./dist ./coverage ./tsconfig.tsbuildinfo",
"debug-test-e2e": "cross-env DEBUG=testcontainers vitest run $@",
"dev": "tsup --watch",
"fix-all-files": "eslint . --ext .ts,.tsx,.js,.jsx,.cjs,.mjs --fix",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.cjs,.mjs --cache --cache-location ../../.cache/eslint/db-main-prisma.eslintcache",
"codegen": "rimraf ./src/generated && prisma generate",
"prisma-generate": "prisma generate",
"prisma-db-push": "dotenv-flow -- yarn prisma db push",
"prisma-db-seed": "dotenv-flow -- yarn prisma db seed",
"prisma-migrate": "dotenv-flow -- yarn prisma migrate",
"prisma-migrate-reset": "dotenv-flow -- yarn prisma migrate reset",
"prisma-studio": "dotenv-flow -- yarn prisma studio",
"test": "run-s test-unit",
"test-e2e": "dotenv-flow -- yarn vitest run",
"test-unit": "echo \"No unit tests yet\"",
"typecheck": "tsc --project ./tsconfig.json --noEmit"
},
"devDependencies": {
"@pothos/core": "3.41.2",
"@pothos/plugin-prisma": "3.65.3",
"@prisma/client": "5.22.0",
"@soluble/dsn-parser": "1.9.2",
"@types/node": "22.9.0",
"@vitest/coverage-v8": "2.1.5",
"@vitest/ui": "2.1.5",
"@your-org/eslint-config-bases": "workspace:^",
"camelcase": "8.0.0",
"cross-env": "7.0.3",
"dotenv-flow": "4.1.0",
"dotenv-flow-cli": "1.1.1",
"eslint": "8.57.1",
"execa": "9.5.1",
"graphql": "16.9.0",
"is-port-reachable": "4.0.0",
"keyword-extractor": "0.0.28",
"npm-run-all2": "7.0.1",
"picocolors": "1.1.1",
"prettier": "3.3.3",
"prisma": "5.22.0",
"rimraf": "6.0.1",
"transliteration": "2.3.5",
"tsup": "8.3.5",
"tsx": "4.19.2",
"typescript": "5.7.2",
"vite": "5.4.11",
"vite-tsconfig-paths": "5.1.3",
"vitest": "2.1.5"
},
"peerDependencies": {
"@pothos/plugin-prisma": "^3.41.0",
"@prisma/client": "^5.0.0",
"graphql": "^16.9.0"
},
"prisma": {
"seed": "tsx ./prisma/seed.ts"
}
}