-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.47 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.47 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
{
"name": "basicrestapi",
"version": "2.0.0",
"description": "API REST Node.js Fastify + Prisma (Clean Architecture)",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "prisma generate && tsx watch src/index.ts",
"prestart": "prisma generate",
"start": "node dist/index.js",
"prebuild": "prisma generate",
"build": "tsc -p tsconfig.json",
"lint": "eslint . --ext .ts",
"test": "vitest run",
"test:watch": "vitest",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev --name init",
"prisma:push": "prisma db push",
"prisma:studio": "prisma studio"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dythic/basicRestApi.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dythic/basicRestApi/issues"
},
"homepage": "https://github.com/Dythic/basicRestApi#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"@fastify/cors": "^10.0.1",
"@fastify/jwt": "^10.0.0",
"@fastify/swagger": "^9.4.1",
"@fastify/swagger-ui": "^5.2.3",
"@prisma/client": "^5.20.0",
"dotenv": "^16.4.1",
"envsafe": "^2.0.3",
"fastify": "^5.0.0",
"pino": "^9.5.0",
"pino-pretty": "^11.2.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.12.12",
"eslint": "^9.12.0",
"typescript": "^5.6.3",
"tsx": "^4.19.0",
"vitest": "^1.6.0",
"prisma": "^5.20.0"
}
}