-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
46
47
48
49
50
51
{
"name": "find-a-friend",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"start:dev": "tsx watch src/server.ts",
"test": "vitest run --dir src/services",
"test:create-prisma-environment": "npm link ./prisma/vitest-environment-prisma",
"test:install-prisma-environment": "npm link vitest-environment-prisma",
"test:watch": "vitest --dir src/services",
"pretest:e2e": "run-s test:create-prisma-environment test:install-prisma-environment",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui --dir src/services --coverage.enabled=true",
"test:e2e": "vitest run --dir src/controllers"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"-": "0.0.1",
"@fastify/cookie": "^11.0.1",
"@fastify/jwt": "^9.0.1",
"@prisma/client": "^6.0.1",
"@types/bcryptjs": "^2.4.6",
"@types/got": "9.6.12",
"bcryptjs": "^2.4.3",
"D": "1.0.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"fastify": "^5.1.0",
"got": "14.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "2.1.8",
"globals": "^15.13.0",
"npm-run-all": "4.1.5",
"prisma": "^6.0.1",
"supertest": "^7.0.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.8"
}
}