-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"name": "fastify-jwt-crud",
"version": "1.0.0",
"description": "CRUD usnig Fastify, Prisma, Zod and Typescript",
"main": "./lib/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only --exit-child src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"lint": "tslint -c tslint.json src/**/*.ts",
"prepublish": "npm run build"
},
"keywords": [],
"author": {
"name": "Simran Singh"
},
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.12.0",
"fastify": "^4.15.0",
"fastify-jwt": "^4.2.0",
"fastify-zod": "^1.2.0",
"zod": "^3.21.4",
"zod-to-json-schema": "^3.20.4"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.3"
},
"files": [
"./bin/*",
"./lib/*"
],
"typings": "./lib/index.d.ts"
}