-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "beautiful-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "tsx src/app.ts",
"start:dev": "tsx watch src/app.ts",
"build": "rimraf dist && tsup src/app.ts",
"prod": "node dist/app.js",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/node": "^18.11.18",
"@vitest/coverage-c8": "^0.27.3",
"@vitest/ui": "^0.27.3",
"pino-pretty": "^9.1.1",
"prisma": "^4.9.0",
"rimraf": "^4.1.1",
"sinon": "^15.0.1",
"ts-mock-imports": "^1.3.8",
"tsup": "^6.5.0",
"tsx": "^3.12.2",
"typescript": "^4.9.4",
"vitest": "^0.27.2"
},
"dependencies": {
"@fastify/env": "^4.2.0",
"@fastify/jwt": "^6.5.0",
"@fastify/sensible": "^5.2.0",
"@fastify/swagger": "7.5.1",
"@prisma/client": "^4.9.0",
"fastify": "^4.11.0",
"fastify-zod": "^1.2.0",
"zod": "^3.20.2"
}
}