-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "discord-xx-monitor-bot",
"version": "2.0.0",
"type": "module",
"description": "",
"main": "built/index.js",
"scripts": {
"start": "NODE_ENV=production node built/index.js",
"build": "tsc --build",
"clean": "tsc --build --clean",
"dev-start": "MONGO_CONTAINER_NAME=localhost node -r dotenv-expand/config built/index.js dotenv_config_path=./.env",
"dev": "npm run build && env $(grep NODE_EXTRA_CA_CERTS ./.env | cut -d '#' -f1 | xargs) NODE_ENV=development npm run dev-start"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@commander-js/extra-typings": "^11.0.0",
"@polkadot/api": "^9.14.2",
"base64url": "^3.0.1",
"chalk": "^5.3.0",
"cron": "^2.3.1",
"cronstrue": "^2.27.0",
"discord.js": "^14.11.0",
"moment": "^2.29.4",
"mongodb": "^4.11.0",
"pubsub-js": "^1.9.4"
},
"devDependencies": {
"@polkadot/types": "^9.14.2",
"@types/cron": "^2.0.1",
"@types/node": "^20.3.1",
"@types/pubsub-js": "^1.8.3",
"@xxnetwork/types": "^1.0.4",
"dotenv": "^16.0.3",
"dotenv-expand": "^9.0.0",
"env-cmd": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}