-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.67 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
{
"name": "fastify-prisma-swagger-rest-boilerplate",
"version": "0.0.1",
"description": "Starting template to build Rest APIs, using Fastify, PrimsaJS and TypeScript. Providing OpenAPI/ SwaggerUI for docs. Also, Blazingly fast (breh!)",
"main": "src/index.ts",
"scripts": {
"start": "nodemon src/index.ts",
"build": "tsc -p tsconfig.json",
"debug": "nodemon --inspect=0.0.0.0:9229 src/index.ts",
"docker:dev": "nodemon src/index.ts",
"docker:prod": "pm2-runtime pm2.config.json",
"test": "jest test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielm/fastify-prisma-swagger-rest-boilerplate.git"
},
"keywords": [
"node",
"fastify",
"prisma",
"typescript",
"swagger",
"jest",
"boilerplate",
"recipe",
"javascript"
],
"author": "Daniel Morales <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielm/fastify-prisma-swagger-rest-boilerplate/issues"
},
"homepage": "https://github.com/danielm/fastify-prisma-swagger-rest-boilerplate",
"dependencies": {
"@fastify/compress": "^6.2.1",
"@fastify/cors": "^8.2.1",
"@fastify/env": "^4.2.0",
"@fastify/helmet": "^10.1.0",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.8.0",
"@prisma/client": "^4.12.0",
"dotenv": "^16.0.3",
"fastify": "^4.15.0"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/node": "^18.15.11",
"fastify-tsconfig": "^1.0.1",
"nodemon": "^2.0.22",
"pino-pretty": "^10.0.0",
"prisma": "^4.12.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}