-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.51 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.51 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
{
"name": "@nkzw/server-template",
"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",
"scripts": {
"build": "tsdown",
"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",
"dev:setup": "pnpm prisma generate && pnpm generate-graphql",
"format": "oxfmt --write .",
"generate-graphql": "node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm ./scripts/generate-graphql.tsx",
"lint": "oxlint --silent .",
"lint:fix": "oxlint --fix --silent .",
"lint:format": "oxfmt --check .",
"postinstall": "pnpm dev:setup",
"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": "tsgo",
"vitest:run": "vitest run"
},
"dependencies": {
"@graphql-tools/utils": "^11.0.0",
"@hono/node-server": "^1.19.9",
"@nkzw/core": "^1.3.1",
"@nkzw/define-env": "^1.1.0",
"@pothos/core": "^4.12.0",
"@pothos/plugin-complexity": "^4.1.2",
"@pothos/plugin-directives": "^4.3.0",
"@pothos/plugin-prisma": "^4.14.2",
"@pothos/plugin-relay": "^4.7.0",
"@pothos/plugin-scope-auth": "^4.1.6",
"@prisma/adapter-pg": "^7.4.0",
"@prisma/client": "^7.4.0",
"array-shuffle": "^4.1.0",
"better-auth": "^1.4.18",
"graphql": "^16.12.0",
"graphql-yoga": "^5.18.0",
"hono": "^4.11.9"
},
"devDependencies": {
"@nkzw/eslint-plugin": "^2.0.0",
"@nkzw/oxlint-config": "^1.0.1",
"@swc/core": "^1.15.11",
"@types/node": "^25.2.3",
"@typescript/native-preview": "7.0.0-dev.20260212.1",
"dotenv": "^17.3.1",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-perfectionist": "^5.5.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "~4.4.1",
"glob": "^13.0.3",
"nodemon": "^3.1.11",
"npm-run-all2": "^8.0.4",
"oxfmt": "^0.32.0",
"oxlint": "^1.47.0",
"prisma": "^7.4.0",
"prisma-json-types-generator": "^4.1.1",
"ts-node": "^10.9.2",
"tsdown": "0.20.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"nodemonConfig": {
"ext": "tsx",
"watch": [
"src/"
]
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
}
}