-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 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
{
"name": "inhouse-disc-bot",
"version": "1.0.0",
"description": "inhouse matchmaking",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "jest --silent ts-node/register tests/",
"test-nodb": "TEST_ENV=testwithoutdb jest --silent ts-node/register tests/",
"start": "check-node-version --node \">= 16\" && npm run build && node dist/index.js",
"start:tsnode": "check-node-version --node \">= 16\" && ts-node src/index.ts",
"start-remote": "check-node-version --node \">= 16\" && npm run build && node dist/index.js >> OUTPUT.log 2>>ERROR.log",
"migration": "node src/database/migration.ts",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"truncateRatings": "ts-node src/game/manualGameUpdate/manualGameUpdate.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lolispo/inhouseBot.git"
},
"author": "Petter Andersson, Robert Wörlund",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lolispo/inhouseBot/issues"
},
"homepage": "https://github.com/Lolispo/inhouseBot#readme",
"dependencies": {
"axios": "^1.3.4",
"check-node-version": "^4.2.1",
"child_process": "^1.0.2",
"discord.js": "^14.13.0",
"dotenv": "^8.6.0",
"form-data": "^3.0.1",
"FormData": "^0.10.1",
"fs": "0.0.1-security",
"html-entities": "^1.4.0",
"jest": "^29.5.0",
"moment": "^2.29.1",
"mysql": "^2.18.1",
"mysql-promisify-pool": "^2.1.0",
"mysql2": "^1.7.0",
"node-cleanup": "^2.1.2",
"sequelize": "^6.29.3",
"simple-vdf": "^1.1.1",
"socket.io-client": "^4.6.1",
"steamid": "^1.1.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.0.0",
"util": "^0.12.4"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.23.4",
"prettier": "^2.3.0",
"rewire": "^4.0.1",
"typescript": "^5.0.2"
},
"directories": {
"test": "tests"
}
}