-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 KB
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
39
{
"name": "cp-verification-bot",
"version": "1.0.0",
"description": "Discord bot for verifying Codeforces and CodeChef accounts using Compilation Error verification",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "tsc -p tsconfig.build.json && node dist/index.js",
"build": "tsc -p tsconfig.build.json",
"deploy": "node --experimental-strip-types src/deploy-commands.js",
"dev": "node --watch --experimental-strip-types src/index.ts",
"test": "vitest",
"test:run": "vitest run"
},
"keywords": [
"discord",
"codeforces",
"codechef",
"competitive-programming",
"verification"
],
"author": "",
"license": "MIT",
"dependencies": {
"@supabase/supabase-js": "^2.39.0",
"axios": "^1.6.2",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"vitest": "^4.0.18"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^25.1.0",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}