-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.75 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
{
"version": "1.0.0",
"main": "build/main.js",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "tsc --build",
"test": "ts-node src/test.ts",
"start": "node .",
"start:dev": "nodemon -q",
"start:prod": "dotenv -v NODE_ENV=production -- node .",
"format": "prettier --write \"src/**/*.{ts,js}\"",
"lint": "eslint"
},
"devDependencies": {
"@swc/core": "^1.7.26",
"@tsconfig/recommended": "^1.0.7",
"@types/detect-port": "^1.3.5",
"@types/http-errors": "^2.0.4",
"@types/mime-types": "^2.1.4",
"@types/ms": "^0.7.34",
"@types/node": "^22.5.5",
"@types/nodemailer": "^6.4.16",
"@types/randomstring": "^1.3.0",
"eslint": "^9.11.0",
"globals": "^15.9.0",
"json-schema-to-ts": "^3.1.1",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"prisma": "^5.19.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
},
"dependencies": {
"@fastify/cors": "^10.0.0",
"@fastify/etag": "^6.0.0",
"@fastify/middie": "^9.0.2",
"@fastify/multipart": "^9.0.1",
"@fastify/rate-limit": "^10.0.1",
"@fastify/static": "^8.0.1",
"@fastify/swagger": "^9.0.0",
"@fastify/swagger-ui": "^5.0.1",
"@jmrl23/redis-store": "^2.3.4",
"@prisma/client": "^5.19.1",
"cache-manager": "^5.7.6",
"detect-port": "^1.6.1",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.4.2",
"env-var": "^7.5.0",
"fastify": "^5.0.0",
"fastify-plugin": "^5.0.1",
"glob": "^11.0.0",
"http-errors": "^2.0.0",
"imagekit": "^5.2.0",
"mime-types": "^2.1.35",
"ms": "^2.1.3",
"nodemailer": "^6.9.15",
"pino-pretty": "^11.2.2",
"randomstring": "^1.3.0"
}
}