-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.54 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
{
"name": "bottimus",
"author": "Robert A Fraser",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/rafraser/bottimus.git"
},
"engines": {
"node": ">=16.9.0"
},
"dependencies": {
"discord.js": "^13.6.0",
"dotenv": "^8.2.0",
"html-entities": "^1.2.1",
"mysql": "^2.16.0",
"node-fetch": "^2.6.7",
"prom-client": "^14.0.1"
},
"scripts": {
"build": "tsc",
"serve": "node dist/bottimus.js",
"build-serve": "npm run build && npm run serve",
"lint": "./node_modules/.bin/eslint --ext .ts",
"flake8": "flake8 python --exit-zero --statistics --max-line-length=120 --ignore=E203",
"test": "jest"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/html-entities": "^1.2.16",
"@types/jest": "^27.4.0",
"@types/mysql": "^2.15.15",
"@types/node-fetch": "^2.5.7",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^27.4.7",
"jest-mock": "^27.4.6",
"ts-jest": "^27.1.3",
"ts-node": "^10.2.1",
"typescript": "^4.5.5"
}
}