-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.58 KB
/
package.json
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
62
63
64
65
{
"name": "server",
"version": "1.0.0",
"description": "Risking swap backend",
"keywords": [
"express",
"typescript",
"web3"
],
"author": "Harry Anderson",
"main": "index.ts",
"pre-commit": [
"ts.check",
"build"
],
"scripts": {
"dev": "ts-node-dev src/server.ts",
"cron": "ts-node-dev src/cron.ts",
"start": "ts-node src/server.ts",
"ts.check": "tsc --project tsconfig.json",
"build": "tsc --build",
"add-build": "git add dist"
},
"dependencies": {
"@moralisweb3/common-evm-utils": "^2.23.2",
"alchemy-sdk": "^3.0.0",
"argon2": "^0.31.2",
"axios": "^1.6.0",
"bad-words": "^3.0.4",
"colors": "^1.4.0",
"connect-mongo": "^5.1.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"express-fileupload": "^1.4.2",
"express-rate-limit": "^7.2.0",
"express-validator": "^7.0.1",
"helmet": "^6.0.1",
"http": "^0.0.1-security",
"ioredis": "^5.2.4",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.0",
"moralis": "^2.23.2",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"node-mailjet": "^6.0.5",
"nodemon": "^2.0.22",
"socket.io": "^4.7.2",
"viem": "^1.19.13",
"web3": "^4.3.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/multer": "^1.4.11",
"@types/node-cron": "^3.0.11",
"@types/node-mailjet": "^3.3.12",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}