-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.15 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
{
"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",
"start": "cd src/ && ts-node-esm --pretty --transpile-only --files index.ts",
"build": "npm run lint && npm run prettier && npm run compile && npm run copy"
},
"dependencies": {
"@discordjs/rest": "^1.0.1",
"axios": "^1.4.0",
"discord.js": "^14.3.0",
"dotenv": "^16.0.1",
"mongoose": "^7.3.1",
"node-cron": "^3.0.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0"
},
"devDependencies": {
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@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"
}
}