generated from angeloanan/personal-discord-bot-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "personal-discord-bot-template",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Christopher Angelo <[email protected]>",
"license": "MIT",
"dependencies": {
"@prisma/client": "^4.2.1",
"@sapphire/discord-utilities": "^2.11.6",
"@sapphire/framework": "^3.0.0",
"common-tags": "^1.8.2",
"discord.js": "^13",
"dotenv": "^16.0.1"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"@sapphire/ts-config": "^3.3.4",
"@types/common-tags": "^1.8.1",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"discord-api-types": "^0.37.5",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.15.0",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"prisma": "^4.2.1",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"typescript": "4.7"
},
"scripts": {
"start": "node .",
"build": "tsc",
"dev": "tsc-watch --onSuccess \"node --experimental-specifier-resolution=node .\"",
"prepare": "husky install",
"lint": "eslint . --fix"
}
}