-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.1 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
60
61
62
63
64
65
66
67
{
"name": "discord.ts-example",
"version": "1.0.0",
"description": "discordx bot example",
"keywords": [
"discordx",
"discord.ts",
"discord.js",
"bot",
"discord",
"typescript"
],
"homepage": "https://github.com/oceanroleplay/discord.ts-example#readme",
"bugs": {
"url": "https://github.com/oceanroleplay/discord.ts-example/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oceanroleplay/discord.ts-example.git"
},
"license": "MIT",
"author": "Wizages",
"type": "module",
"main": "build/client.js",
"scripts": {
"build": "tsc",
"watch": "tsc -p tsconfig.json -w",
"dev": "node --loader ts-node/esm/transpile-only src/main.ts",
"start": "cross-env AWS_PROFILE=partyAccount nodemon --exec node --loader ts-node/esm/transpile-only src/main.ts ",
"start-prod": "cross-env AWS_PROFILE=partyAccount nodemon --exec node --loader ts-node/esm/transpile-only src/main.ts ",
"serve": "node build/main.js",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"lint-fix": "npx eslint . --ext .js,.jsx,.ts,.tsx --fix",
"clean": "tsc --build --clean"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.632.0",
"@discordx/importer": "^1.3.1",
"@discordx/pagination": "^3.5.4",
"@discordx/utilities": "^7.0.1",
"canvas": "^2.11.2",
"discord-api-types": "^0.37.94",
"discord.js": "^14.15.3",
"discordx": "^11.12.0",
"dotenv": "^16.4.5",
"runescape-api-ts": "2.0.2"
},
"devDependencies": {
"@types/node": "^22.4.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@typescript-eslint/typescript-estree": "^8.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "github:Kenneth-Sills/eslint-config-airbnb-typescript#kesills-typescript-eslint-v8",
"eslint-plugin-import": "^2.29.1",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}