-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.2 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
{
"name": "rbac-api",
"type": "module",
"scripts": {
"dev": "nodemon --watch src --ext ts --exec bun src/server.ts",
"build": "tsc",
"start": "bun dist/server.js",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,json}\"",
"seed": "bun run prisma/seed/index.ts"
},
"dependencies": {
"@fastify/swagger": "8",
"@fastify/swagger-ui": "1",
"@prisma/client": "^5.0.0",
"bcrypt": "^5.1.0",
"dotenv": "^17.3.1",
"fastify": "^4.0.0",
"json-schema": "^0.4.0",
"jsonwebtoken": "^9.0.0",
"winston": "^3.10.0",
"fastify-type-provider-zod": "^3.0.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.3.3",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unused-imports": "^4.4.1",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"prisma": "^5.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}