-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "finance-app-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "dotenv -e .env.test -- jest --silent",
"test:watch": "npm run test -- --watch --runInBand",
"test:coverage": "npm run test --coverage ",
"postinstall": "husky install && prisma generate",
"migrations": "node src/db/postgres/migrations/exec.js",
"start:dev": "node --watch index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@faker-js/faker": "^8.4.1",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"git-commit-msg-linter": "^5.0.6",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prisma": "^5.10.2"
},
"dependencies": {
"@prisma/client": "^5.10.2",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.4",
"dotenv-cli": "^7.4.2",
"express": "^4.18.2",
"pg": "^8.11.3",
"uuid": "^9.0.1",
"validator": "^13.11.0",
"zod": "^3.22.4"
}
}