forked from rrsilaya/ctf-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 735 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 735 Bytes
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
{
"name": "ctf-bot",
"version": "1.0.0",
"main": "index.js",
"author": "Ralph Lawrence Silaya <rrsilaya@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/node": "^14.11.5",
"awesome-typescript-loader": "^5.2.1",
"backpack-core": "^0.8.4",
"class-validator": "^0.12.2",
"discord.js": "^12.3.1",
"dotenv": "^8.2.0",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typeorm": "^0.2.28",
"typescript": "^4.0.3"
},
"scripts": {
"start": "backpack",
"build": "backpack build",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/.bin/typeorm",
"schema:sync": "yarn typeorm schema:sync"
}
}