-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.13 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": "coin-keepere-api",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "tsx watch src/server.ts",
"start": "node build/server.js",
"build": "tsup src --out-dir build",
"prisma:migrate": "prisma migrate dev",
"prisma:seed": "prisma db seed",
"prisma:generate": "prisma generate",
"prettier": "prettier --write .",
"clean": "rm -rf build && rm -rf node_modules && rm -rf .vitest",
"lint": "eslint --fix --ext .ts src",
"test": "vitest run --dir src/use-cases",
"test:watch": "vitest --dir src/use-cases",
"test:coverage": "vitest run --coverage src/use-cases",
"test:coverage:watch": "vitest --coverage src/use-cases",
"test:ui": "vitest --ui",
"test:create-prisma-environment": "npm link ./prisma/vitest-environment-prisma",
"test:install-prisma-environment": "npm link vitest-environment-prisma",
"pretest:e2e": "run-s test:create-prisma-environment test:install-prisma-environment",
"test:e2e": "vitest run --dir src/http",
"test:e2e:watch": "vitest --dir src/http"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cookie": "9.2.0",
"@fastify/cors": "^8.3.0",
"@fastify/jwt": "7.2.4",
"@prisma/client": "^5.10.1",
"axios": "^1.6.8",
"bcryptjs": "2.4.3",
"cron": "^3.1.7",
"dayjs": "1.11.9",
"dotenv": "16.4.3",
"fastify": "4.26.2",
"node-cache": "^5.1.2",
"vitest-environment-prisma": "file:prisma/vitest-environment-prisma",
"zod": "3.22.4"
},
"devDependencies": {
"@types/bcryptjs": "2.4.2",
"@types/node": "20.4.5",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@vitest/coverage-v8": "^0.33.0",
"@vitest/ui": "0.33.0",
"eslint": "^8.43.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"npm-run-all": "4.1.5",
"prisma": "^5.0.0",
"supertest": "6.3.3",
"tsup": "7.0.0",
"tsx": "3.12.7",
"typescript": "^5.1.6",
"vite-tsconfig-paths": "4.2.0",
"vitest": "0.33.0"
}
}