-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
41
42
43
44
45
46
47
48
{
"type": "module",
"scripts": {
"start": "npx tsx --watch src/index.ts",
"dev": "tsx --inspect-brk --watch src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@discordjs/rest": "^2.4.2",
"@hey-api/client-fetch": "^0.8.1",
"axios": "^1.7.9",
"body-parser": "^2.0.2",
"cors": "^2.8.5",
"discord.js": "^14.17.3",
"dotenv": "^16.4.7",
"express": "^5.0.1",
"express-session": "^1.18.1",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"tsx": "^4.19.3",
"uuid": "^11.1.0"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.61.2",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.1",
"@types/node": "^22.13.1",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.16",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}