-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.72 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.72 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
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
85
86
{
"name": "@nkzw/prisma-pothos-graphql-server",
"version": "0.0.1",
"author": "Christoph Nakazawa <christoph.pojer@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/nkzw-tech/server-template.git"
},
"type": "module",
"engines": {
"node": ">=23.0.0",
"pnpm": ">=10.0.0"
},
"dependencies": {
"@graphql-tools/utils": "^10.8.6",
"@nkzw/core": "^1.2.1",
"@nkzw/define-env": "^1.1.0",
"@pothos/core": "^4.6.2",
"@pothos/plugin-complexity": "^4.1.1",
"@pothos/plugin-directives": "^4.2.1",
"@pothos/plugin-prisma": "^4.8.1",
"@pothos/plugin-relay": "^4.4.2",
"@prisma/client": "^6.7.0",
"@quixo3/prisma-session-store": "^3.1.13",
"@types/express-session": "^1.18.1",
"array-shuffle": "^3.0.0",
"body-parser": "^2.2.0",
"bufferutil": "^4.0.9",
"cors": "^2.8.5",
"express": "^5.1.0",
"express-session": "^1.18.1",
"graphql": "^16.11.0",
"graphql-yoga": "^5.13.4",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"utf-8-validate": "^6.0.5"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@nkzw/eslint-config": "^2.4.0",
"@swc/core": "^1.11.24",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.18",
"@types/express": "^5.0.1",
"@types/node": "^22.15.17",
"@types/passport": "^1.0.17",
"@types/passport-local": "^1.0.38",
"eslint": "^9.26.0",
"glob": "^11.0.2",
"nodemon": "^3.1.10",
"npm-run-all2": "^8.0.1",
"prettier": "^4.0.0-alpha.12",
"prisma": "^6.7.0",
"prisma-json-types-generator": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"scripts": {
"dev": "NODE_ENV=development node_modules/.bin/nodemon -q -I --exec node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm --env-file .env src/index.tsx",
"format": "prettier --write .",
"dev:setup": "pnpm prisma generate && pnpm generate-graphql",
"generate-graphql": "node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm ./scripts/generate-graphql.tsx",
"lint:format": "prettier --cache --check .",
"lint": "eslint --cache .",
"preinstall": "command -v git >/dev/null 2>&1 && git config core.hooksPath git-hooks || exit 0",
"test": "npm-run-all --parallel tsc:check vitest:run lint lint:format",
"tsc:check": "tsc",
"vitest:run": "vitest run"
},
"nodemonConfig": {
"ext": "tsx",
"watch": [
"src/"
]
},
"prisma": {
"schema": "./src/prisma/schema.prisma",
"seed": "./src/prisma/seed.tsx"
},
"pnpm": {
"patchedDependencies": {
"prisma-json-types-generator": "patches/prisma-json-types-generator.patch"
}
}
}