-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.8 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
{
"name": "gym-nodejs",
"version": "1.0.0",
"main": "index.js",
"author": "Mateus Henrique",
"license": "MIT",
"private": false,
"scripts": {
"start:dev": "tsx watch src/server.ts",
"prestart": "npx prisma migrate deploy",
"start": "node build/server.js",
"build": "tsup src --out-dir build",
"test": "vitest run --dir src/use-cases",
"test:watch": "vitest --watch --dir src/use-cases",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"pretest:e2e": "run-s test:create-prisma-environment test:install-prisma-environment",
"test:e2e": "vitest run --dir src/http",
"test:e2e:watch": "vitest --watch --dir src/http",
"test:create-prisma-environment": "npm link ./prisma/vitest-environment-prisma",
"test:install-prisma-environment": "npm link vitest-environment-prisma"
},
"devDependencies": {
"@rocketseat/eslint-config": "1.2.0",
"@types/bcryptjs": "2.4.2",
"@types/node": "18.16.1",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"@vitest/coverage-c8": "0.30.1",
"@vitest/ui": "0.30.1",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "^2.25.2",
"npm-run-all": "4.1.5",
"prisma": "4.13.0",
"supertest": "6.3.3",
"ts-node": "10.9.1",
"tsup": "6.7.0",
"tsx": "3.12.6",
"typescript": "5.0.4",
"vite-tsconfig-paths": "4.2.0",
"vitest": "0.30.1"
},
"dependencies": {
"@fastify/cookie": "8.3.0",
"@fastify/jwt": "6.7.1",
"@prisma/client": "4.13.0",
"bcryptjs": "2.4.3",
"dayjs": "1.11.7",
"dotenv": "16.0.3",
"fastify": "4.16.3",
"zod": "3.21.4"
},
"prisma": {
"seed": "ts-node --transpile-only prisma/seeds/seed.ts"
}
}