-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "snrbot",
"version": "1.0.0",
"license": "GPL-3.0",
"scripts": {
"dev": "cross-env NODE_ENV=development tsx watch src/index.ts",
"start": "tsx src/index.ts",
"lint": "tsc && eslint . && prettier --check .",
"lint:fix": "prettier --write ."
},
"dependencies": {
"@discordjs/builders": "^1.7.0",
"@discordjs/rest": "2.2.0",
"colorette": "^2.0.20",
"discord-api-types": "^0.37.77",
"discord.js": "14.14.1",
"express": "^4.19.2",
"gray-matter": "^4.0.3",
"tsx": "4.7.1",
"valibot": "^0.30.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "20.11.30",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"cross-env": "^7.0.3",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"prettier": "3.2.5",
"ts-node": "^10.9.2",
"typescript": "5.4.3"
},
"packageManager": "pnpm@8.6.5"
}