-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.12 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "03-gympass-alike-api",
"version": "1.0.0",
"description": "Gympass alike API",
"main": "index.js",
"scripts": {
"build": "tsup",
"dev": "doppler run -- tsx watch src/server.ts",
"start": "node build/server.js",
"migrate:dev": "doppler run --config test -- prisma migrate dev",
"test": "doppler run --config test -- vitest --passWithNoTests",
"test:ci": "vitest --passWithNoTests --run",
"test:e2e": "doppler run --config test -- vitest -c vitest.e2e-config.ts --passWithNoTests",
"test:e2e:ci": "vitest -c vitest.e2e-config.ts --passWithNoTests --run",
"test:coverage": "pnpm run test --coverage",
"test:ui": "pnpm run test:coverage --ui"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@effect/data": "^0.5.0",
"@fastify/cookie": "^8.3.0",
"@fastify/jwt": "^6.7.1",
"@prisma/client": "^4.11.0",
"auto-bind": "^5.0.1",
"bcryptjs": "^2.4.3",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"exhaustive": "^1.1.1",
"fastify": "^4.14.1",
"ulid": "^2.3.0",
"zod": "^3.21.4",
"zod-validation-error": "^1.0.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/node": "^18.15.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitest/coverage-c8": "^0.29.3",
"@vitest/ui": "^0.29.3",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest-extended": "^3.2.4",
"prettier": "^2.8.4",
"prisma": "^4.11.0",
"supertest": "^6.3.3",
"tsup": "^6.7.0",
"tsx": "^3.12.5",
"typescript": "^5.0.2",
"vite-tsconfig-paths": "^4.0.7",
"vitest": "^0.29.3",
"vitest-environment-prisma": "./prisma/vitest-environment-prisma"
}
}