-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.68 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
40
41
42
43
44
45
46
47
48
49
{
"name": "its-discord-auth",
"version": "3.1.1",
"description": "A Discord authentication service built with TypeScript.",
"type": "module",
"scripts": {
"start": "nodemon --exec tsx src/main.ts",
"start:local": "nodemon --exec tsx src/main.local.ts",
"test": "vitest run --coverage",
"deploy-commands": "tsx src/scripts/deployCommands.production.ts",
"deploy-commands:local": "tsx src/scripts/deployCommands.local.ts",
"migrate-roles": "tsx src/scripts/migrateRoles.production.ts",
"migrate-roles:local": "tsx src/scripts/migrateRoles.local.ts",
"format": "biome format src/**/*.ts",
"lint": "biome lint src/**/*.ts",
"check": "biome check src/**/*.ts",
"format:fix": "biome format --write src/**/*.ts",
"lint:fix": "biome lint --write src/**/*.ts",
"check:fix": "biome check --write src/**/*.ts",
"all:fix": "biome check --write src/**/*.ts && biome format --write src/**/*.ts && biome lint --write src/**/*.ts",
"ci": "biome ci"
},
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/node": "^25.5.0",
"@types/uuid": "^11.0.0",
"@vitest/coverage-v8": "^4.1.2",
"nodemon": "^3.1.14",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"dependencies": {
"@mathjax/mathjax-mhchem-font-extension": "^4.1.2",
"@mathjax/mathjax-newcm-font": "^4.1.2",
"@mathjax/src": "^4.1.2",
"@shizuoka-its/core": "3.0.1",
"cron": "^4.4.0",
"discord.js": "^14.26.0",
"dotenv": "^17.4.0",
"firebase": "^12.11.0",
"firebase-admin": "^13.7.0",
"sharp": "^0.34.5",
"uuid": "^14.0.0",
"winston": "^3.19.0"
},
"packageManager": "yarn@4.9.1"
}