-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "cocoa-grader",
"version": "1.2.0",
"description": "Discord Bot Grader",
"main": "dist/bot/client.js",
"repository": "https://github.com/Leomotors/cocoa-grader",
"author": "Leomotors",
"license": "MIT",
"type": "module",
"scripts": {
"start": "node --es-module-specifier-resolution=node dist/bot/client.js",
"build": "tsc",
"clean": "rimraf dist/*",
"cb": "yarn clean && yarn build",
"clear": "rimraf temp/*-*",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src && prettier --check \"src/**/*.ts\""
},
"dependencies": {
"@discordjs/builders": "^0.12.0",
"chalk": "^5.0.1",
"cocoa-discord-utils": "^1.4.1",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"node-fetch": "^3.2.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/node": "^17.0.23",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.12.0",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.3"
}
}