-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.92 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
{
"name": "on-despezzas",
"version": "1.0.0",
"description": "onDespezzas is an application that allows you to manage your expenses",
"main": "main.js",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsup src --clean --out-dir dist",
"postbuild": "rimraf -g dist/**/*.spec.js",
"prestart": "npm run db:deploy",
"start": "node --watch dist/infra/main.js",
"start:dev": "tsx watch src/infra/main.ts",
"test": "vitest run --dir src/domain/use-cases",
"test:watch": "vitest",
"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": "NODE_ENV=testing vitest run --dir src/infra/http",
"db:migrate": "npx prisma migrate dev",
"db:deploy": "npx prisma migrate deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.13.0",
"@scalar/express-api-reference": "^0.4.12",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.13",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"supertest": "^7.0.0",
"swagger-ui-express": "^5.0.0",
"zod": "^3.23.3"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@rocketseat/eslint-config": "^2.2.2",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.7",
"@types/nodemailer": "^6.4.14",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"eslint": "^8.57.0",
"prisma": "^5.13.0",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.5.0"
}
}