-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1001 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1001 Bytes
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": "compsigh-bot",
"author": {
"name": "compsigh",
"url": "https://compsigh.club"
},
"version": "0.1.0",
"license": "UNLICENSED",
"description": "Discord bot for compsigh, the social computer science club at the University of San Francisco",
"main": "index.js",
"type": "module",
"scripts": {
"prebuild": "pnpm run pretty",
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"pretty": "prettier . --check",
"prepare": "husky"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"discord.js": "^14.18.0",
"dotenv": "^16.4.7",
"mongodb": "^6.14.2",
"typescript": "^5.8.2"
},
"devDependencies": {
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.6.2"
},
"packageManager": "pnpm@10.15.0+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b"
}