-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.83 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": "jpj-api-fastify",
"version": "1.0.0",
"description": "backend api jpj system with nodejs fastify typescript",
"main": "./dist/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "trash dist/",
"test-jest": "trash coverage/ &&jest --watchAll --collectCoverage",
"dev:build": "npm run clean && tsc -w",
"dev:server": "nodemon -e js -w dist dist/app.js"
},
"keywords": [
"fastify",
"nodejs",
"typescript",
"clean-architecture"
],
"author": "cobate",
"license": "ISC",
"dependencies": {
"@fastify/accepts": "^4.1.0",
"@fastify/auth": "^4.2.0",
"@fastify/cors": "^8.2.0",
"@fastify/csrf-protection": "^6.1.0",
"@fastify/express": "^2.3.0",
"@fastify/helmet": "^10.1.0",
"@fastify/rate-limit": "^7.6.0",
"@fastify/static": "^6.6.0",
"@jpj-common/module": "^1.0.9",
"@types/amqplib": "^0.10.1",
"@types/axios": "^0.14.0",
"@types/bcryptjs": "^2.4.2",
"@types/dotenv": "^8.2.0",
"@types/mysql": "^2.15.21",
"@types/node": "^18.11.13",
"@types/supertest": "^2.0.12",
"ajv-errors": "^3.0.0",
"amqplib": "^0.10.3",
"app-root-path": "^3.1.0",
"axios": "^1.2.3",
"bcryptjs": "^2.4.3",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"fastify": "^4.10.2",
"fastify-multer": "^2.0.3",
"mysql": "^2.18.1",
"mysql2": "^3.3.3",
"nodemailer": "^6.9.2",
"pino": "^8.7.0",
"redis": "^4.6.5",
"trash-cli": "^5.0.0",
"ts-node": "^10.9.1",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1",
"x-xss-protection": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"json-schema-to-ts": "^2.8.0",
"loadtest": "^5.2.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
}
}