-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 982 Bytes
/
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
{
"type": "module",
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,css,md}": "prettier --write"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint --cache --fix src",
"prettier": "prettier --write src",
"compile": "tsc",
"copy": "cp src/.env dist",
"build": "npm run lint && npm run prettier && npm run compile && npm run copy"
},
"dependencies": {
"@discordjs/rest": "^1.0.1",
"discord.js": "^14.3.0",
"dotenv": "^16.0.1"
},
"devDependencies": {
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/node-fetch": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}