-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 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
42
43
44
45
{
"name": "nhids-server",
"version": "1.0.0",
"main": "index.js",
"author": "Kayode Balogun",
"license": "MIT",
"scripts": {
"dev": "nodemon --config nodemon.json src/app.ts",
"debug": "npm run dev --inspect",
"build": "tsc",
"start": "node build/app.js"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/config": "^3.3.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.45",
"@types/nodemailer": "^6.4.11",
"nanoid": "^3.3.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"typescript": "^4.6.3"
},
"dependencies": {
"bcrypt": "^5.0.1",
"config": "^3.3.9",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dayjs": "^1.11.1",
"dotenv": "^16.3.1",
"express": "^4.18.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^7.5.3",
"nodemailer": "^6.9.5",
"pino": "^7.10.0",
"pino-pretty": "^7.6.1",
"ts-node": "^10.9.1",
"zod": "^3.14.4"
}
}