-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.95 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "dungeon-master-worker",
"version": "0.1.0",
"description": "A bot worker for RaidGuild's DuneonMaster",
"main": "index.js",
"repository": "https://github.com/ECWireless/dungeon-master-worker.git",
"author": "ECWireless <[email protected]>",
"license": "MIT",
"dependencies": {
"@pinata/sdk": "^2.1.0",
"@safe-global/api-kit": "^1.3.1",
"@safe-global/protocol-kit": "^5.0.4",
"@safe-global/safe-core-sdk-types": "^5.1.0",
"axios": "^1.5.1",
"discord.js": "^14.11.0",
"dotenv": "^16.1.4",
"ethers": "5.7.2",
"jsonwebtoken": "^9.0.0",
"mongodb": "^6.2.0",
"openai": "^3.2.1",
"ts-node": "^10.9.1",
"viem": "^2.21.54"
},
"scripts": {
"deploy-commands": "ts-node -T src/deploy-commands.ts",
"dev": "nodemon src/index.ts",
"start": "ts-node -T src/index.ts",
"lint": "eslint --ignore-path .gitignore \"*/**/*.{js,jsx,ts,tsx}\" --fix",
"format": "prettier --ignore-path .gitignore --write \"{*,**/*}.{ts,tsx,js,jsx,json,yml,yaml,md}\"",
"typecheck": "tsc",
"prepare": "husky install"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/module-alias": "^2.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^20.3.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.22",
"prettier": "^2.6.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
}
}