-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 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
{
"name": "security",
"version": "0.0.0",
"private": true,
"main": "dist/bin/www",
"scripts": {
"start": "pm2 start ./dist/bin/www.js --watch",
"stop": "pm2 stop ./dist/bin/www.js --watch",
"build": "npx tsc",
"dev": "pm2-dev start ts-node -- -P tsconfig.json ./bin/www.ts",
"stop-dev": "pm2 stop ./bin/www.ts"
},
"dependencies": {
"@moralisweb3/common-evm-utils": "^2.22.3",
"axios": "^1.4.0",
"bcrypt": "^5.0.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.0",
"express": "^4.18.2",
"http-errors": "~1.6.3",
"jade": "^0.29.0",
"jsonwebtoken": "^9.0.0",
"moralis": "^2.22.3",
"morgan": "~1.9.1",
"multer": "^1.4.4-lts.1",
"mysql2": "^2.3.3",
"nodemailer": "^6.7.4",
"pm2": "^5.3.0",
"sequelize": "^6.19.0",
"socket.io": "^4.5.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/debug": "^4.1.8",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/node": "^20.3.1",
"@types/nodemailer": "^6.4.8",
"typescript": "^5.1.3"
}
}