-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
39
40
{
"name": "its-discord-auth",
"version": "2.0.0",
"description": "A Discord authentication service built with TypeScript.",
"scripts": {
"start": "nodemon --exec ts-node src/main.ts",
"dev": "nodemon --exec ts-node src/main.ts",
"test": "vitest run --coverage",
"deploy-commands": "ts-node src/scripts/deployCommands.ts",
"format": "biome format",
"lint": "biome lint",
"check": "biome check",
"format:fix": "biome format --write",
"lint:fix": "biome lint --write",
"check:fix": "biome check --write",
"ci": "biome ci"
},
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@types/node": "^22.13.1",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^3.0.5",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"vitest": "^3.0.5"
},
"dependencies": {
"@shizuoka-its/core": "^1.1.0",
"cron": "^3.1.7",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"firebase": "^10.14.0",
"firebase-admin": "^12.6.0",
"uuid": "^10.0.0",
"winston": "^3.17.0"
},
"packageManager": "[email protected]"
}