-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.69 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
{
"name": "esc-bot",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"check-format": "prettier --check .",
"check-types": "tsc --noEmit",
"format": "prettier --write .",
"lint": "eslint src --ext ts",
"lint-fix": "npm run lint -- --fix",
"start": "nodemon --watch \"src/**/*.ts\" -e ts --exec \"node --env-file .env --import tsx/esm src/bot.ts\"",
"test": "npm run test-only && npm run lint && npm run check-types && npm run check-format",
"test-only": "vitest run",
"test-coverage": "vitest run --coverage",
"vitest": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ES-Community/bot.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ES-Community/bot/issues"
},
"homepage": "https://github.com/ES-Community/bot#readme",
"dependencies": {
"better-sqlite3": "^11.1.2",
"cron": "^3.1.7",
"discord.js": "^14.15.3",
"got": "^14.4.1",
"html-entities": "^2.5.2",
"knex": "^3.1.0",
"node-html-markdown": "^1.3.0",
"node-html-parser": "^6.1.13",
"pino": "^9.3.1",
"pino-pretty": "^11.2.1"
},
"devDependencies": {
"@types/emoji-regex": "^8.0.0",
"@types/node": "^20.14.11",
"@types/ws": "^8.5.11",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vitest/coverage-v8": "^2.0.3",
"eslint": "^8.57.0",
"eslint-plugin-unicorn": "^54.0.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vitest": "^2.0.3"
},
"engines": {
"node": "22.x"
},
"volta": {
"node": "22.5.1"
}
}