-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "guardian-of-the-realm",
"version": "1.0.0",
"description": "Seven Thrones Discord bot",
"main": "bot.js",
"author": "Jeremy Hofer",
"type": "commonjs",
"contributors": [
"Zorbaz Englander"
],
"scripts": {
"start": "npx ts-node src/index.ts",
"deploy-commands": "npx ts-node src/deploy-commands.ts",
"typeorm": "typeorm-ts-node-commonjs",
"prettier-check": "npx prettier --check .",
"prettier-write": "npx prettier --write .",
"lint": "npx eslint .",
"test": "npx jest"
},
"dependencies": {
"discord.js": "^14.7.1",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.2",
"typeorm": "^0.3.10"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/better-sqlite3": "^7.6.2",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"prettier": "2.8.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}