-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1018 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1018 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
35
36
37
38
39
{
"name": "express-validation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development nodemon --watch src src/index.ts",
"build": "npx tsc",
"typecheck": "npx tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Andre Castelo",
"license": "ISC",
"dependencies": {
"@hapi/boom": "^10.0.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-pino-logger": "^7.0.0",
"pino": "^8.1.0",
"pino-pretty": "^8.1.0",
"uuid": "^8.3.2",
"zod": "^3.17.3"
},
"devDependencies": {
"@swc/core": "^1.2.209",
"@swc/helpers": "^0.4.3",
"@types/express": "^4.17.13",
"@types/express-pino-logger": "^4.0.3",
"@types/node": "^18.0.1",
"@types/pino": "^7.0.5",
"@types/pino-pretty": "^4.7.5",
"@types/uuid": "^8.3.4",
"nodemon": "^2.0.18",
"regenerator-runtime": "^0.13.9",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}