-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.18 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
65
66
67
68
69
70
71
{
"name": "progbot",
"author": "TeamBN",
"license": "Unlicense",
"description": "TeamBN's progbot",
"version": "2.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/TeamBattleNet/ProgBot.git"
},
"engines": {
"node": ">=20.10.0"
},
"scripts": {
"start-dev": "yarn build && LOG_LEVEL=debug node dist/index.js",
"build": "rm -rf dist/ && tsc",
"lint": "eslint --config eslint.config.js --format unix src/ && prettier --check '{src/**/*.ts,vitest.config.ts}'",
"format": "prettier --write '{src/**/*.ts,vitest.config.ts}'",
"test": "vitest run --coverage",
"test:docker": "docker build . -f test.Dockerfile -t progbot-testing-container && docker run -it progbot-testing-container",
"typeorm:cli": "node ./node_modules/typeorm/cli",
"migration:run": "yarn build && yarn typeorm:cli migration:run -d dist/clients/database.js",
"migration:generate": "yarn typeorm:cli migration:generate -d dist/clients/database.js",
"clean": "rm -rf dist/ coverage/"
},
"dependencies": {
"@twurple/api": "^7.1.0",
"@twurple/auth": "^7.1.0",
"@twurple/chat": "^7.1.0",
"@twurple/pubsub": "^7.1.0",
"better-sqlite3": "^11.1.2",
"bufferutil": "^4.0.8",
"chalk": "^5.3.0",
"discord.js": "^14.15.3",
"express": "^4.19.2",
"got": "^14.4.2",
"loglevel": "^1.9.1",
"loglevel-plugin-prefix": "^0.8.4",
"source-map-support": "^0.5.21",
"tslib": "^2.6.3",
"typeorm": "0.3.20",
"utf-8-validate": "^6.0.4",
"uuid": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@swc/core": "^1.7.11",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/node": "^20.15.0",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.12",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-unix": "^8.40.0",
"memfs": "^4.11.1",
"prettier": "^3.3.3",
"typescript": "5.4.5",
"typescript-eslint": "^8.1.0",
"unplugin-swc": "^1.5.1",
"vitest": "^2.0.5"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 180
}
}