-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.8 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.8 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
{
"name": "fastify-mongo-template",
"version": "1.0.0",
"description": "Template Fastify TypeScript com MongoDB",
"main": "dist/server.js",
"scripts": {
"test": "vitest run",
"build": "tsup src/server.ts --format cjs --dts --out-dir dist",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"seed": "tsx scripts/seed-data.ts",
"seed:sales": "tsx scripts/seed-random-sales.ts",
"test:watch": "vitest",
"lint": "eslint .",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:restart": "docker compose restart",
"docker:logs": "docker compose logs -f",
"docker:build": "docker compose up -d --build",
"docker:ps": "docker compose ps",
"docker:clean": "docker compose down -v --remove-orphans",
"docker:endpoints": "./scripts/docker-endpoints.sh",
"docker:reset-all": "./scripts/docker-reset-all.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yPerfectBR/hackathon.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/yPerfectBR/hackathon/issues"
},
"homepage": "https://github.com/yPerfectBR/hackathon#readme",
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/sensible": "^6.0.4",
"dotenv": "^17.4.2",
"fastify": "^5.8.5",
"mongoose": "^9.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"eslint": "^10.2.1",
"mongodb-memory-server": "^11.0.1",
"supertest": "^7.2.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}