-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 995 Bytes
/
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
{
"name": "damaranbot",
"version": "1.0.0",
"description": "Discord Bot that connects to my D&D campaign site.",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "tsup src/index.ts --minify",
"test": "vitest",
"lint": "eslint src/**/*.ts --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.8",
"discord.js": "^14.12.1",
"dotenv": "^16.4.5",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.4",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"msw": "^2.2.13",
"prettier": "^3.2.5",
"supabase": "^1.157.2",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
}
}