-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.22 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
42
43
44
45
46
{
"name": "shop_backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"dev:watch": "tsx watch src/server.ts",
"test": "NODE_ENV=test vitest",
"test:ui": "NODE_ENV=test vitest --ui",
"test:watch": "NODE_ENV=test vitest --watch",
"test:coverage": "NODE_ENV=test vitest run --coverage",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"type-check": "tsc --noEmit"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@fastify/auth": "^5.0.3",
"@fastify/autoload": "^6.3.1",
"@fastify/cors": "^11.1.0",
"@fastify/helmet": "^13.0.1",
"@fastify/postgres": "^6.0.2",
"@fastify/rate-limit": "^10.3.0",
"@fastify/sensible": "^6.0.3",
"@fastify/swagger": "^9.5.2",
"@fastify/swagger-ui": "^5.2.3",
"@prisma/client": "^6.16.3",
"bcrypt": "^6.0.0",
"fastify": "^5.6.1"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/node": "^24.5.2",
"@vitest/ui": "^3.2.4",
"pino-pretty": "^13.1.1",
"prisma": "^6.16.3",
"tsx": "^4.20.6",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"type": "module"
}