-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "cbot.ts",
"version": "0.1.0",
"description": "A comprehensive chatbot framework that integrates with numerous instant messaging platforms.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "ts-node src/index.ts",
"test": "mocha --require ts-node/register test/**/*.ts",
"build": "tsc",
"prepublishOnly": "tsc",
"lint": "ts-standard",
"fix-lint": "ts-standard --fix",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/rest": "^2.0.0",
"axios": "^1.4.0",
"cors": "^2.8.5",
"discord.js": "^14.12.1",
"dotenv": "^16.3.1",
"express": "^4.17.1",
"express-jwt": "^8.4.1",
"googleapis": "^124.0.0",
"grammy": "^1.17.2",
"log4js": "^6.9.1",
"mongoose": "^7.4.2",
"ts-node": "^10.9.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"husky": "^8.0.0",
"ts-standard": "^12.0.2"
},
"ts-standard": {
"ignore": [
"/src/utils/env.ts"
]
}
}