-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 KB
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
{
"name": "ascend",
"version": "0.0.1-dev",
"description": "An open source moderation bot!",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node .",
"watch": "rm -rf dist && tsc -w",
"build": "rm -rf dist && node_modules/.bin/tsc",
"format": "prettier . -c --ignore-path .gitignore",
"lint": "eslint . --ignore-path .gitignore",
"prepare": "husky install"
},
"engines": {
"node": ">=16 <17"
},
"author": "https://github.com/Barely-Awake",
"license": "AGPL-3.0-only",
"dependencies": {
"@saber2pr/types-github-api": "^0.0.9",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/ms": "^0.7.31",
"canvas": "^2.11.0",
"discord.js": "^14.8.0",
"dotenv": "^16.0.3",
"mongoose": "^6.10.2",
"ms": "^2.1.3",
"sharp": "^0.34.0",
"typescript": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@types/node-fetch": "^2.6.2",
"@types/sharp": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"prettier": "2.8.8"
}
}