-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 3.2 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
85
86
87
88
89
90
91
92
93
94
{
"name": "backend",
"packageManager": "[email protected]",
"scripts": {
"start": "yarn db:migration:deploy && node ./.output/index.js",
"build": "tsc --project tsconfig.json --outDir .output --sourceMap false --pretty",
"typecheck": "tsc --project tsconfig.json --noEmit --pretty",
"dev": "ts-node-dev --clear --rs --inspect -- index.ts",
"db:client:gen": "prisma generate",
"db:schema:format": "prisma format",
"db:migration:new": "prisma migrate dev --create-only",
"db:migration:deploy": "prisma migrate deploy",
"graphql:schema:dump": "ts-node dump-schema.ts",
"lint": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore",
"postinstall": "prisma generate"
},
"dependencies": {
"@apollo/server": "^4.10.0",
"@prisma/client": "^5.8.1",
"@quixo3/prisma-session-store": "^3.1.13",
"@sentry/node": "^7.98.0",
"@types/express": "^4.17.21",
"@types/node": "^20.11.6",
"argon2": "^0.31.2",
"axios": "^1.6.6",
"body-parser": "^1.20.2",
"class-validator": "^0.14.1",
"content-disposition": "^0.5.4",
"cookie": "^0.6.0",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"exceljs": "^4.4.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fast-glob": "^3.3.2",
"graphql": "^16.8.1",
"graphql-fields": "^2.0.3",
"graphql-scalars": "^1.22.4",
"graphql-upload": "^13.0.0",
"handlebars": "^4.7.8",
"html-minifier": "^4.0.0",
"html-to-text": "^9.0.5",
"http-status-codes": "^2.3.0",
"ics": "^3.7.2",
"inline-css": "^4.0.2",
"jsvat": "^2.5.3",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"minio": "^7.1.3",
"node-gyp": "^10.0.1",
"nodemailer": "^6.9.8",
"qrcode": "^1.5.3",
"rambdax": "^10.1.0",
"reflect-metadata": "^0.2.1",
"server-timing": "^3.3.3",
"sharp": "^0.33.2",
"soap": "^1.0.0",
"superjson": "^1.13.3",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"type-graphql": "next",
"typescript": "^5.3.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"@types/content-disposition": "^0.5.8",
"@types/cookie": "^0.6.0",
"@types/cors": "^2.8.17",
"@types/express-session": "^1.17.10",
"@types/graphql-fields": "^1.3.9",
"@types/graphql-upload": "^8.0.12",
"@types/html-minifier": "^4.0.5",
"@types/html-to-text": "^9.0.4",
"@types/inline-css": "^3.0.3",
"@types/lodash": "^4.14.202",
"@types/mime-types": "^2.1.4",
"@types/minio": "^7.1.1",
"@types/nodemailer": "^6.4.14",
"@types/qrcode": "^1.5.5",
"@types/sax": "^1.2.7",
"@types/sharp": "^0.32.0",
"@types/validator": "^13.11.8",
"eslint": "^8.56.0",
"prisma": "^5.8.1",
"ts-node-dev": "^2.0.0",
"type-fest": "^4.10.1",
"typegraphql-prisma": "^0.27.1"
},
"engineStrict": true,
"engines": {
"node": ">=20.0.0"
}
}