-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.66 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
66
{
"name": "typescript-express",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/app.ts",
"playground": "nodemon src/playground.ts",
"cron": "nodemon src/cron.ts",
"prod": "node dist/app.js",
"catchup": "node dist/catchup.js",
"postinstall": "node bin/postinstall.js",
"lint": "eslint src --ext .ts",
"watch": "tsc -w",
"build": "npm run lint && tsc"
},
"nodemonConfig": {
"ignore": [
"tmp/*"
]
},
"engines": {
"node": "18.x"
},
"pre-push": "build",
"pre-commit": "build",
"author": "",
"license": "ISC",
"dependencies": {
"@airbrake/node": "^2.1.7",
"@loopring-web/loopring-sdk": "^2.1.14",
"axios": "^0.27.2",
"cids": "^1.1.9",
"discord-webhook-node": "^1.1.8",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"emittery": "^0.11.0",
"ethereumjs-wallet": "^1.0.2",
"ethers": "^5.7.2",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"javascript-time-ago": "^2.5.9",
"node-ts-cache": "^4.4.0",
"node-ts-cache-storage-memory": "^4.4.0",
"pug": "^3.0.2",
"redis": "^4.4.0",
"replace-in-file": "^6.3.5",
"web3": "^1.8.0",
"web3-provider-engine": "^16.0.4",
"ws": "^8.11.0",
"yaml": "^2.1.3"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"nodemon": "^2.0.20",
"npm-check-updates": "^16.3.18",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}