forked from Lolispo/inhouseBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.17 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.17 KB
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
{
"name": "inhouse-disc-bot",
"version": "1.0.0",
"description": "inhouse matchmaking",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "check-node-version --node \">= 14\" && mocha -r ts-node/register 'tests/**/*.test.ts' --exit",
"test-no-db": "check-node-version --node \">= 14\" && TEST_ENV=testwithoutdb mocha -r ts-node/register 'tests/**/*.test.ts' --exit",
"start": "check-node-version --node \">= 14\" && ts-node src/index.ts",
"start-remote": "check-node-version --node \">= 14\" && ts-node src/index.ts >> OUTPUT.log 2>>ERROR.log",
"mocha": "mocha",
"spec": "mocha -r ts-node/register tests/commands/teammates.test.ts --exit",
"migration": "node src/database/migration.ts",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"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": {
"FormData": "^0.10.1",
"axios": "^0.21.1",
"check-node-version": "^3.3.0",
"discord.js": "^12.5.3",
"dotenv": "^8.6.0",
"form-data": "^3.0.1",
"fs": "0.0.1-security",
"html-entities": "^1.4.0",
"moment": "^2.29.1",
"mysql": "^2.18.1",
"mysql-promisify-pool": "^2.1.0",
"mysql2": "^1.7.0",
"node-cleanup": "^2.1.2",
"npm": "^6.14.13",
"request": "^2.88.2",
"sequelize": "^5.22.4",
"simple-vdf": "^1.1.1",
"socket.io-client": "^4.1.2",
"steamid": "^1.1.3",
"ts-node": "^10.0.0",
"util": "^0.12.4"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"chai": "^4.3.4",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.23.4",
"mocha": "^5.2.0",
"prettier": "^2.3.0",
"rewire": "^4.0.1",
"typescript": "^4.3.2"
}
}