-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "todo-list-api-2.0",
"version": "2.0.0",
"description": "Rewrited TODO api with Fastify",
"main": "/src/app.ts",
"type": "module",
"target": "es2022",
"module": "es2022",
"scripts": {
"test": "jest",
"dev": " tsc && node built/app.js",
"ts": "tsc src/app.ts",
"start": "npx prisma migrate dev --name init && tsc && node built/app.js"
},
"keywords": [
"todo-list",
"api",
"fastify"
],
"author": "Mykhailo Sichkaruk",
"license": "MIT",
"dependencies": {
"@fastify/jwt": "^6.7.1",
"@fastify/autoload": "^5.7.1",
"@fastify/swagger": "^7.4.1",
"@prisma/client": "^4.14.0",
"bcrypt": "^5.0.1",
"fastify": "^4.10.2",
"fastify-plugin": "^4.0.0",
"pino-pretty": "^9.4.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/node": "^18.7.8",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"nodemon": "^2.0.19",
"prisma": "^4.2.1",
"tap": "^16.3.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}