-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
{
"name": "typescript-fastify-postgres-auth-microservice",
"version": "1.0.0",
"description": "```bash\r npm init -y",
"main": "index.js",
"scripts": {
"test": "tap --allow-incomplete-coverage",
"start:dev": "nodemon src/app.ts",
"start:db": "docker-compose up -d && npx prisma migrate deploy",
"start": "npm run start:db && npm run start:dev",
"lint": "eslint . --ext .ts --fix",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ernitingarg/typescript-fastify-postgres-auth-microservice.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ernitingarg/typescript-fastify-postgres-auth-microservice/issues"
},
"homepage": "https://github.com/ernitingarg/typescript-fastify-postgres-auth-microservice#readme",
"dependencies": {
"@faker-js/faker": "^8.2.0",
"@fastify/jwt": "^7.2.2",
"@fastify/swagger": "^8.12.0",
"@fastify/swagger-ui": "^1.10.1",
"@prisma/client": "^5.5.2",
"bcrypt": "^5.1.1",
"fastify": "^4.24.3",
"fastify-zod": "^1.4.0",
"pino": "^8.16.1",
"pino-pretty": "^10.2.3",
"tap": "^18.5.7",
"ts-mock-imports": "^1.3.8",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.21.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.1",
"@types/node": "^20.8.9",
"@types/tap": "^15.0.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"dotenv": "^16.3.1",
"eslint": "^8.53.0",
"nodemon": "^3.0.1",
"sinon": "^17.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}