-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.01 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
{
"name": "djs-ts",
"version": "0.0.1",
"description": "A template bot using discord.js and typescript",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node -r dotenv/config dist/index.js",
"start:dev": "tsnd -r dotenv/config src/index",
"commands:register": "tsnd -r dotenv/config src/index --register-commands",
"pretty": "prettier --write \"./**/*.{ts,js,json}\""
},
"keywords": [],
"author": "Jan Plazovnik",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.7.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.3"
},
"dependencies": {
"axios": "^1.1.3",
"chalk": "4.1.2",
"dayjs": "^1.11.6",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"striptags": "^3.2.0",
"zod": "^3.19.1"
}
}