-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.95 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
{
"name": "meetFlow-Api",
"version": "1.0.0",
"description": "Sistema completo de agendamentos online",
"main": "index.js",
"repository": "https://github.com/WesleyR10/MeetFlowAPI-OBC.git",
"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: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",
"start": "node -r dotenv/config dist",
"generate": "plop --plopfile ./generators/plopfile.js",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"lint": "eslint \"{src, generators, apps, libs, test}/**/*.ts\" --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@flydotio/dockerfile": "^0.5.5",
"@shelf/jest-mongodb": "^4.2.0",
"@stylistic/eslint-plugin-js": "^1.7.0",
"@types/bcrypt": "^5.0.2",
"@types/fastify-multipart": "^0.7.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/module-alias": "^2.0.4",
"@types/mongodb": "^4.0.7",
"@types/node": "^20.11.30",
"@types/passport-google-oauth20": "^2.0.14",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-vitest-globals": "^1.5.0",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"mockdate": "^3.0.5",
"mongodb-memory-server": "^9.1.7",
"mongodb-memory-server-core": "^9.1.7",
"plop": "^4.0.1",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3",
"vite-tsconfig-paths": "^4.3.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.540.0",
"@fastify/cors": "^9.0.1",
"@fastify/helmet": "^11.1.1",
"@fastify/mongodb": "^8.0.0",
"@fastify/multipart": "^8.2.0",
"@fastify/passport": "^2.4.0",
"@fastify/rate-limit": "^9.1.0",
"@fastify/request-context": "^5.1.0",
"@fastify/secure-session": "^7.5.0",
"@fastify/under-pressure": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"bcrypt": "^5.1.1",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.1",
"dotenv": "^16.4.5",
"fastify": "^4.26.2",
"fastify-multer": "^2.0.3",
"fastify-multipart": "^5.4.0",
"file-type": "^19.0.0",
"googleapis": "^134.0.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"mongodb": "^6.5.0",
"passport": "^0.7.0",
"passport-google-oauth2": "^0.2.0",
"passport-google-oauth20": "^2.0.0",
"zod": "^3.22.4"
}
}