-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.4 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
{
"name": "node-api-starter",
"version": "1.0.0",
"description": "Boilerplate de API REST em produção: TypeScript, Express, JWT (access + refresh), RBAC, Zod, Swagger, testes e Docker.",
"type": "module",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsup src/server.ts --format esm --clean --sourcemap",
"start": "node dist/server.js",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"keywords": [
"api",
"rest",
"express",
"typescript",
"jwt",
"rbac",
"zod",
"swagger",
"boilerplate",
"nodejs"
],
"author": "Samuel Ferreira",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Samuelf27/node-api-starter.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-rate-limit": "^8.5.2",
"helmet": "^8.3.0",
"jsonwebtoken": "^9.0.2",
"swagger-ui-express": "^5.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"supertest": "^7.0.0",
"tsup": "^8.1.0",
"tsx": "^4.16.2",
"typescript": "^5.4.5",
"vitest": "^4.1.10"
}
}