-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "crosscode-bot",
"version": "0.0.1",
"main": "./dist/main.js",
"engines": {
"node": ">=12"
},
"scripts": {
"clean": "rm -r dist",
"build": "tsc",
"watch": "tsc --watch",
"start": "\"$NODE\" --inspect dist/main.js",
"lint": "eslint src --ext .js,.ts --ignore-path .gitignore",
"test": "mocha -r ts-node/register tests/**/*.spec.ts"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.1.0",
"mocha": "^9.0.0",
"nodemon": "^2.0.15",
"ts-node": "^10.0.0",
"typescript": "^4.1.5"
},
"dependencies": {
"bufferutil": "^4.0.3",
"discord-api-types": "^0.31.0",
"discord.js": "^12.4.0",
"discord.js-commando": "^0.12.2",
"utf-8-validate": "^5.0.4",
"zlib-sync": "^0.1.7"
}
}