-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 823 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 823 Bytes
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
{
"name": "cutucao-bot",
"version": "1.3.0",
"description": "🐕 cutuCÃO — Bot Discord do ASSERT Lab (CIn-UFPE) para acompanhamento de orientandos",
"main": "dist/index.js",
"type": "commonjs",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "DOTENV_CONFIG_PATH=.env.dev ts-node src/index.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"better-sqlite3": "^11.7.0",
"discord.js": "^14.16.3",
"dotenv": "^16.4.7",
"node-cron": "^3.0.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^20.17.10",
"@types/node-cron": "^3.0.11",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vitest": "^2.1.9"
}
}