-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 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
{
"name": "logistics",
"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": {
"axios": "^1.6.8",
"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",
"node-cache": "^5.1.2",
"nodemailer": "^6.9.13",
"otp-generator": "^4.0.1",
"pg": "^8.11.5",
"pg-format": "^1.0.4",
"pg-pool": "^3.6.2",
"pug": "^3.0.2",
"reflect-metadata": "^0.2.2",
"socket.io": "^4.7.5",
"tsyringe": "^4.8.0",
"typedi": "^0.10.0",
"uuid": "^9.0.1",
"xss-filters": "^1.2.7"
},
"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/pg": "^8.11.6",
"@types/pug": "^2.0.10",
"@types/socket.io": "^3.0.2",
"@types/uuid": "^9.0.8",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}