-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.92 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
{
"name": "fastify-server",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"type": "module",
"scripts": {
"dev": "node --watch-path ./src --import tsx/esm ./src/app.ts",
"build": "tsc -p .",
"lint": "npx eslint .",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:main": "node --import tsx/esm src/tests/main.ts",
"prisma:generate": "npx prisma generate",
"prisma:studio": "npx prisma studio",
"prisma:push": "npx prisma db push",
"prisma:pull": "npx prisma db pull",
"prisma:reset": "npx prisma migrate reset",
"encode-env": "base64 < .env | pbcopy",
"decode-env": "pbpaste | base64 -d"
},
"author": "aasenov",
"license": "MIT",
"dependencies": {
"@azure/msal-node": "~2.16.2",
"@fastify/compress": "~8.0.1",
"@fastify/cookie": "~11.0.1",
"@fastify/cors": "~10.0.1",
"@fastify/jwt": "~9.0.2",
"@fastify/multipart": "~9.0.1",
"@fastify/oauth2": "~8.1.0",
"@fastify/rate-limit": "~10.2.1",
"@fastify/static": "~8.0.3",
"@fastify/swagger": "~9.4.0",
"@fastify/swagger-ui": "~5.2.0",
"@fastify/websocket": "~11.0.1",
"@fastify/schedule": "~5.0.2",
"@prisma/client": "~6.1.0",
"ajv": "~8.17.1",
"ajv-keywords": "~5.1.0",
"dotenv": "~16.4.7",
"fastify": "~5.2.0",
"handlebars": "~4.7.8",
"luxon": "~3.5.0",
"nodemailer": "~6.9.16",
"sanitize-html": "~2.14.0",
"toad-scheduler": "~3.0.1",
"croner": "~9.0.0",
"undici": "~7.2.0"
},
"devDependencies": {
"@eslint/js": "~9.17.0",
"@types/eslint__js": "~8.42.3",
"@types/luxon": "~3.4.2",
"@types/node": "~22.10.2",
"@types/nodemailer": "~6.4.17",
"@types/sanitize-html": "~2.13.0",
"@types/ws": "~8.5.13",
"@vitest/ui": "~2.1.8",
"eslint": "~9.17.0",
"prisma": "~6.1.0",
"tsx": "~4.19.2",
"typescript": "~5.7.2",
"typescript-eslint": "~8.18.2",
"vitest": "~2.1.8"
}
}