-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.15 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.15 KB
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
{
"name": "finance-app-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest --silent",
"test:watch": "jest --watch --silent",
"test:coverage": "jest --passWithNoTests --silent --coverage",
"postinstall": "npx husky install",
"migrations": "node src/db/postgres/migrations/exec.js",
"dev": "node --watch index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@faker-js/faker": "^8.4.1",
"babel-jest": "^29.7.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"git-commit-msg-linter": "^5.0.4",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"prisma": "^5.9.1"
},
"dependencies": {
"@prisma/client": "^5.9.1",
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"pg": "^8.11.3",
"uuid": "^9.0.1",
"validator": "^13.11.0",
"zod": "^3.22.4"
}
}