-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 900 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 900 Bytes
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
{
"name": "finance-app-serv",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start:dev": "node --watch index.js",
"postinstall": "npx husky install && npx prisma generate",
"pre-commit": "lint-staged"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.3.0",
"eslint": "^9.3.0",
"globals": "^15.3.0",
"lint-staged": "^15.2.5",
"prisma": "^5.20.0"
},
"dependencies": {
"@prisma/client": "^5.20.0",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"pg": "^8.12.0",
"uuid": "^10.0.0",
"validator": "^13.12.0",
"zod": "^3.23.8"
}
}