-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 984 Bytes
/
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
{
"name": "discordbotts",
"version": "1.0.0",
"description": "Boilerplate code for a Typescript Discord Bot",
"main": "src/Bot.ts",
"scripts": {
"build": "./node_modules/typescript/bin/tsc",
"run": "node dist/Bot.js",
"start": "ts-node src/Bot.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Lak Moore",
"license": "ISC",
"dependencies": {
"@after_ice/eve-sso": "^2.0.2",
"discord.js": "^14.14.1",
"dotenv": "^16.0.3",
"eve-client-ts": "^1.0.0",
"koa": "^2.14.2",
"node-persist": "^3.1.3"
},
"devDependencies": {
"@marketgridsys/prettier": "^2.9.0-mgs.4",
"@types/koa__router": "^12.0.0",
"@types/node": "^18.16.3",
"@types/node-persist": "^3.1.3",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}