-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "discordbottemplate",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"genenv": "node ./gen-dotenv.js",
"start:yarn": "yarn && npx tsc && ts-node ./src/index.ts",
"start:npm": "npm i && npx tsc && ts-node ./src/index.ts",
"build:yarn": "yarn && npx tsc",
"build:npm": "npm i && npx tsc",
"start:built": "node ./dist/src/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/builders": "^1.1.0",
"@discordjs/collection": "^1.0.1",
"@discordjs/rest": "^1.0.1",
"@sapphire/shapeshift": "^3.7.0",
"chalk": "^4.1.2",
"discord-api-types": "^0.37.3",
"discord.js": "^14.2.0",
"dotenv": "^16.0.3",
"luxon": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/luxon": "^3.1.0",
"@types/node": "^18.11.9"
},
"resolutions": {
"@discordjs/builders": "^1.1.0",
"@discordjs/collection": "^1.0.1",
"@discordjs/rest": "^1.0.1",
"@sapphire/shapeshift": "^3.7.0",
"chalk": "^4.1.2",
"discord-api-types": "^0.37.3",
"discord.js": "^14.2.0",
"dotenv": "^16.0.3",
"luxon": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"yarn": "^1.22.19"
}
}