-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.17 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
{
"name": "bot",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"engines": {
"node": ">= 16 < 17"
},
"dependencies": {
"@ubccpsc310/bot-base": "^1.0.9",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"fs-extra": "^10.0.0",
"imagizer": "^0.4.4",
"request": "^2.88.2"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/chai": "^4.2.21",
"@types/dotenv": "^8.2.0",
"@types/fs-extra": "^9.0.12",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"chai": "^4.3.4",
"eslint": "^7.11.0",
"mocha": "^9.1.1",
"nodemon": "2.0.12",
"ts-node": "^10.2.1",
"typescript": "4.4.2"
},
"scripts": {
"build": "tsc",
"test": "mocha --require ts-node/register --extension .spec.ts --recursive test",
"fix": "yarn lint --fix",
"lint": "eslint src --ext .ts",
"start": "ts-node src/App.ts",
"watch": "nodemon"
},
"nodemonConfig": {
"ignore": [
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "yarn start",
"ext": ".ts"
}
}