-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "bftestbot",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"module": "es2022",
"target": "es2022",
"scripts": {
"ts": "ts-node src/index.ts",
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "run-s build start",
"watch:start": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"format": "prettier --write \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/freasy/bftestbot.git"
},
"author": "Eike Ahmels",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/freasy/bftestbot/issues"
},
"homepage": "https://github.com/freasy/bftestbot#readme",
"dependencies": {
"@octokit/rest": "^19.0.7",
"@sapphire/framework": "^4.0.2",
"dayjs": "^1.11.7",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"mysql2": "^2.3.3",
"node-schedule": "^2.1.1",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.7.0",
"typeorm": "^0.3.11"
},
"devDependencies": {
"@sapphire/prettier-config": "^1.4.5",
"@sapphire/ts-config": "^3.3.4",
"@types/node": "^18.11.19",
"@types/node-schedule": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.5"
}
}