forked from CougarCS/CougarCS-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1011 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": "cougarcs-bot",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"build": "tsc --build",
"clean": "tsc --build --clean",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts --fix src/",
"prettier": "prettier --check src/**/*.ts",
"prettier:fix": "prettier --write src/**/*.ts"
},
"dependencies": {
"@discordjs/rest": "^1.3.0",
"@supabase/supabase-js": "^2.8.0",
"discord-api-types": "^0.37.14",
"discord.js": "^14.10.2",
"dotenv": "^16.0.3",
"node-fetch": "^2.6.12"
},
"devDependencies": {
"@types/node": "^18.11.0",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.25.0",
"prettier": "^2.7.1",
"supabase": "^1.42.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
}
}