-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.38 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.38 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "Barberix",
"version": "1.0.0",
"description": "Sistema completo de agendamentos online do bootcamp CrazyStack",
"main": "index.js",
"repository": "https://github.com/gumiranda/CrazyStackNodeJs.git",
"author": "imartytk@Hotmail.com",
"scripts": {
"test:db": "jest --passWithNoTests --silent --noStackTrace --runInBand --forceExit -c jest-db-config.js",
"test:all": "jest --passWithNoTests --silent --noStackTrace --runInBand --forceExit -c jest-all-config.js",
"test:spec": "jest --passWithNoTests --silent --noStackTrace --runInBand --forceExit -c jest-spec-config.js",
"test:t": "jest --passWithNoTests --silent --noStackTrace --runInBand --forceExit -c jest-test-config.js",
"test": "jest --passWithNoTests --silent --forceExit --detectOpenHandles --noStackTrace --runInBand",
"test:v": "jest --passWithNoTests --forceExit --noStackTrace --runInBand",
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"start2": "node -r dotenv/config dist",
"start": "node -r module-alias/register -r dotenv/config -r ts-node/register -r tsconfig-paths/register src/index.ts",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"generate": "yarn plop --plopfile ./generators/plopfile.js"
},
"license": "MIT",
"devDependencies": {
"@shelf/jest-mongodb": "^4.3.2",
"@types/amqplib": "^0.10.6",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.8",
"@types/module-alias": "^2.0.4",
"@types/pg": "^8.11.11",
"@types/slug": "^5.0.9",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.14",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"dotenv": "^16.4.7",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"mockdate": "^3.0.5",
"mongodb-memory-server": "^10.1.3",
"mongodb-memory-server-core": "^10.1.3",
"plop": "^4.0.1",
"prettier": "^3.5.0",
"prisma": "^6.3.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3"
},
"_moduleAliases": {
"@": "dist"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.744.0",
"@aws-sdk/lib-storage": "^3.744.0",
"@aws-sdk/s3-request-presigner": "^3.744.0",
"@fastify/cors": "^10.0.2",
"@fastify/helmet": "^13.0.1",
"@fastify/mongodb": "^9.0.2",
"@fastify/multipart": "^9.0.3",
"@fastify/rate-limit": "^10.2.2",
"@fastify/request-context": "^6.0.2",
"@fastify/swagger": "^9.4.2",
"@fastify/swagger-ui": "^5.2.1",
"@fastify/under-pressure": "^9.0.3",
"@fastify/websocket": "^11.0.2",
"@googlemaps/google-maps-services-js": "^3.4.0",
"@gquittet/graceful-server": "^5.2.10",
"@prisma/client": "^6.3.1",
"amqplib": "^0.10.5",
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"core-js": "^3.40.0",
"crypto-js": "^4.2.0",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"deep-email-validator": "^0.1.21",
"fastify": "5.2.1",
"ioredis": "^5.5.0",
"jsonwebtoken": "^9.0.2",
"kafkajs": "^2.2.4",
"module-alias": "^2.2.3",
"mongodb": "^6.13.0",
"pg": "^8.13.2",
"resend": "^4.1.2",
"slug": "^9.1.0",
"stripe": "^17.6.0",
"uuid": "^11.0.5",
"zod": "^3.24.1"
}
}