-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "discord-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"start": "node dist/index.js",
"prettier": "npx prettier . --write",
"giveVerifiedRole": "node dist/migrations/giveVerifiedRole.js",
"deploySlashCommands": "node dist/deploy-commands.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/lodash.omit": "^4.5.6",
"@types/node": "^16.11.56",
"@types/node-cron": "^2.0.3",
"@types/node-fetch": "^2.5.10",
"prettier": "3.1.0",
"tslint": "^6.1.3",
"typescript": "^5.0.0"
},
"dependencies": {
"@wise-old-man/utils": "^3.3.6",
"dayjs": "^1.10.5",
"discord.js": "^14.15.3",
"dotenv": "^10.0.0",
"fast-csv": "^4.3.6",
"googleapis": "^128.0.0",
"lodash.omit": "^4.5.0",
"mongoose": "^6.0.12",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.7"
}
}