-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "teamvoid-bot",
"version": "1.9.0",
"description": "The team void bot",
"main": "src/index.ts",
"scripts": {
"start": "node dist/src/index.js",
"dev": "concurrently \"tsc -w\" \"nodemon ./dist/src/index.js\"",
"hard": "rm -rf ./dist && npm run build && npm run dev",
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"license": "GPL",
"dependencies": {
"@typegoose/typegoose": "^10.5.0",
"axios": "^0.24.0",
"chalk": "^4.1.2",
"common-tags": "^1.8.2",
"concurrently": "^7.6.0",
"dedent": "^1.5.1",
"discord.js": "^14.15.3",
"dotenv": "^10.0.0",
"env": "github:tv-esports/env",
"glob": "^7.2.3",
"moment-timezone": "^0.5.45",
"mongoose": "^6.12.2",
"node-cron": "^3.0.3",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.4",
"@types/glob": "^7.2.0",
"@types/jest": "^29.5.7",
"@types/node": "^17.0.45",
"@types/node-cron": "^3.0.10",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2"
}
}