-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.17 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
{
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml}": [
"prettier --write"
]
},
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node -r tsconfig-paths/register dist/index.js",
"dev": "tsx watch src/index.ts",
"build": "tsc && tsc-alias",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"codegen": "graphql-codegen --config src/codegen.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.28.2",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@graphql-codegen/typescript-resolvers": "^5.1.7",
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.2.2",
"@types/pg": "^8.18.0",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-boundaries": "^5.4.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"prisma": "^7.5.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0"
},
"dependencies": {
"@apollo/server": "^5.4.0",
"@as-integrations/express5": "^1.1.2",
"@graphql-codegen/cli": "^6.2.1",
"@graphql-tools/graphql-file-loader": "^8.1.12",
"@graphql-tools/load": "^8.1.8",
"@graphql-tools/schema": "^10.0.31",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@t3-oss/env-core": "^0.13.10",
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.2.4",
"express": "^5.2.1",
"graphql": "^16.13.1",
"graphql-import-node": "^0.0.5",
"jsonwebtoken": "^9.0.3",
"pg": "^8.20.0",
"tsconfig-paths": "^4.2.0",
"uuid": "^13.0.0",
"zod": "^4.3.6"
}
}