-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.6 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
72
73
74
75
76
77
78
79
80
81
{
"name": "thera-bot",
"version": "0.0.0",
"description": "My package TheraBot",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"typeorm": "node --require ts-node/register node_modules/typeorm/cli.js",
"migrate": "npm run typeorm migration:run -- -d ormconfig.js",
"clean": "npx -q rimraf dist",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.json",
"lint": "npm run lint:src && npm run lint:test",
"lint:src": "eslint --ext ts --max-warnings 0 --ignore-pattern *.spec.ts src",
"lint:test": "eslint --ext ts --plugin jest --env jest/globals src/**/*.spec.ts",
"pretest": "npm run lint",
"test": "jest src",
"start": "npm run migrate && node ./dist/main.js",
"preversion": "npm run test"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts",
"!src/**/*.spec.ts",
"!dist/**/*"
],
"preset": "ts-jest",
"testEnvironment": "node"
},
"keywords": [],
"author": "Jeroen Akkerman",
"repository": "github:Ionaru/TheraBot",
"license": "MIT",
"devDependencies": {
"@ionaru/eslint-config": "^13.0.0",
"@types/countdown": "^0.0.9",
"@types/debug": "^4.1.9",
"@types/escape-string-regexp": "^2.0.1",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"eslint": "^8.51.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sonarjs": "^0.21.0",
"eslint-plugin-unicorn": "^48.0.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
},
"dependencies": {
"@ionaru/esi-service": "^6.0.0",
"@ionaru/eve-utils": "^8.0.0",
"@ionaru/format-number": "^5.0.0",
"agentkeepalive": "^4.5.0",
"axios": "^1.7.7",
"better-sqlite3": "^8.7.0",
"countdown": "^2.6.0",
"debug": "^4.3.4",
"discord.js": "^14.16.3",
"dotenv": "^16.3.1",
"escape-string-regexp": "^4.0.0",
"http-status-codes": "^2.3.0",
"reflect-metadata": "^0.1.13",
"slash-create": "^5.14.0",
"typeorm": "^0.3.20"
},
"overrides": {
"@ionaru/esi-service": {
"axios": "1"
}
}
}