-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1000 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
33
34
35
36
37
38
{
"name": "motcher",
"version": "1.5.0",
"scripts": {
"test": "ts-node src/index.ts",
"start": "npm run compile && node build/index.js",
"compile": "tsc -p .",
"format": "prettier . --write",
"lint": "npm run format && eslint .",
"deploy:slash": "npm run compile && node ./build/deploy-commands.js"
},
"author": "MotiCAT",
"license": "MIT",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node-cron": "^3.0.11",
"@types/node-os-utils": "^1.3.4",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
},
"dependencies": {
"aurora-mongo": "^1.1.3",
"axios": "^1.6.5",
"deepl": "^1.0.13",
"discord.js": "^14.12.1",
"dotenv": "^16.3.2",
"fs": "^0.0.1-security",
"mongoose": "^8.1.1",
"node-cron": "^3.0.3",
"node-os-utils": "^1.3.7",
"os": "^0.1.2"
}
}