-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.67 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "InvoiceHub",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc",
"copy-files": "cp -r ./src/views ./dist",
"start": "node dist/server.js",
"dev": "nodemon src/server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.17",
"@types/validator": "^13.11.10",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"html-to-text": "^9.0.5",
"joi": "^17.13.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.6.2",
"mongoose": "^8.4.0",
"node-cache": "^5.1.2",
"nodemailer": "^6.9.13",
"otp-generator": "^4.0.1",
"pug": "^3.0.2",
"reflect-metadata": "^0.2.2",
"speakeasy": "^2.0.0",
"tsyringe": "^4.8.0",
"validator": "^13.12.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/html-to-text": "^9.0.4",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.11",
"@types/nodemailer": "^6.4.15",
"@types/otp-generator": "^4.0.2",
"@types/pug": "^2.0.10",
"@types/speakeasy": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-security": "^3.0.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}