forked from Call-the-Banners/Call-the-Banners-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
49
{
"name": "call-the-banner",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"add": "commandment --dir src/commands",
"dev": "nodemon dist/index.js",
"build": "tsc",
"watch": "tsc -w",
"clean": "rm -rf dist",
"command": "commandment -d src/commands",
"test": "echo \"Error: no test specified\" && exit 1",
"castle-reset": "node dist/migration.js",
"enlist-summary": "node dist/summary.js",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/builders": "^1.2.0",
"@jiman24/commandment": "^0.7.0",
"@jiman24/discordjs-utils": "^0.1.2",
"@napi-rs/canvas": "^0.1.29",
"@psibean/discord.js-pagination": "^2.0.9",
"common-tags": "^1.8.2",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"enmap": "^5.8.8",
"luxon": "^2.3.1",
"nodemon": "^2.0.19",
"typescript": "^4.6.2",
"uuid": "^8.3.2",
"uuidv4": "^6.2.12",
"web3": "^1.7.5"
},
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/luxon": "^2.3.0",
"@types/uuid": "^8.3.4",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"lint-staged": {
"**/*.(ts|tsx)": "prettier --write"
}
}