-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
{
"name": "escribo.inovation.teste_2",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:tiblazy/escribo.inovation.teste_2.git",
"author": "tiblazy <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"start:dev": "NODE_ENV=development tsx watch src/server.ts",
"build": "tsup src !src/**/*.spec.ts !src/**/test/**/* --out-dir build --publicDir src/docs",
"prisma:dev": "prisma migrate dev",
"prisma:deploy": "prisma generate && prisma migrate deploy",
"start:prod": "cross-env NODE_ENV=production node build/server.js",
"test": "NODE_ENV=development JWT_SECRET='' DATABASE_URL='' vitest run --dir src/use-cases",
"prisma:studio": "prisma studio",
"test:watch": "vitest --dir src/use-cases",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix"
},
"dependencies": {
"@faker-js/faker": "^8.3.1",
"@fastify/jwt": "^7.2.4",
"@fastify/swagger": "^8.12.0",
"@fastify/swagger-ui": "^1.10.1",
"@prisma/client": "^5.6.0",
"bcryptjs": "^2.4.3",
"cross-env": "^7.0.3",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"fastify": "^4.24.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@rocketseat/eslint-config": "^2.1.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.9.4",
"@types/supertest": "^2.0.16",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"eslint-plugin-vitest-globals": "^1.4.0",
"prisma": "^5.6.0",
"supertest": "^6.3.3",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.0.1",
"tsx": "^4.3.0",
"typescript": "^5.3.2",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6"
}
}