-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "prosaApi",
"version": "1.0.0",
"main": "server.js",
"type": "module",
"repository": "https://github.com/welllucky/prosaApi",
"author": "Wellington Braga",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint . --fix",
"format": "prettier --write .",
"prepare": "husky",
"build": "yarn lint && yarn format && yarn tsc",
"dev": "yarn lint && yarn format && nodemon --env-file=.env server.js"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@types/node": "^20.14.2",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.1.0",
"prettier-eslint": "^16.1.2"
},
"dependencies": {
"@zodyac/zod-mongoose": "^1.1.2",
"express": "^4.19.2",
"mongodb": "^6.7.0",
"mongoose": "^8.4.3",
"morgan": "^1.10.0",
"nodemon": "^3.1.3",
"zod": "^3.23.8"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}