-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
64 lines (64 loc) · 1.47 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@codewars/discord-bot",
"private": true,
"version": "0.2.0",
"description": "The official Discord bot for Codewars",
"author": "kazk",
"license": "MIT",
"engines": {
"node": ">= 16.9.0",
"npm": ">= 7"
},
"main": "./lib/main.js",
"scripts": {
"start": "node ./lib/main.js",
"test": "jest",
"test:watch": "jest --watch",
"clean": "rimraf lib",
"plop": "plop",
"prepare": "husky install && npm run build",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json"
},
"devDependencies": {
"@types/common-tags": "^1.8.0",
"@types/jest": "^26.0.23",
"@types/node": "^16.11.22",
"@types/ws": "^7.4.4",
"husky": "^6.0.0",
"jest": "^28.0.0",
"plop": "^3.0.5",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/node-fetch": "^2.5.12",
"common-tags": "^1.8.0",
"discord.js": "^14.12.0",
"dotenv": "^16.0.0",
"fuzzysearch": "^1.0.3",
"node-fetch": "^2.6.6",
"table": "^6.8.0",
"tslib": "^2.2.0",
"znv": "^0.3.1",
"zod": "^3.2.0"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$"
},
"prettier": {
"printWidth": 100
}
}