-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 867 Bytes
/
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
{
"name": "parking-control-api-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"test": "npx vitest --config vitest.config.ts",
"populate": "tsx watch test/populateDB.ts",
"delete:parking": "tsx watch test/deleteParkingSpot.ts",
"delete:number": "tsx watch test/deleteSpotNumber.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@fastify/cors": "^8.2.0",
"@types/node": "^18.13.0",
"@types/supertest": "^2.0.12",
"axios": "^1.3.4",
"prisma": "^4.10.0",
"supertest": "^6.3.3",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"vitest": "^0.29.1",
"zod": "^3.20.2",
"zod-error": "^1.1.1"
},
"dependencies": {
"@prisma/client": "^4.10.0",
"fastify": "^4.12.0"
}
}