-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.75 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
{
"name": "chat-transmitter-bot",
"version": "2.0.0",
"description": "",
"main": "build/main.js",
"scripts": {
"clean": "rimraf build/",
"build": "tsc",
"start": "node build/main.js",
"watch": "tsc-watch -p . --onSuccess \"node build/main.js\"",
"lint": "eslint src/",
"typeorm": "typeorm-ts-node-esm",
"migration:create": "typeorm-ts-node-esm migration:create",
"migration:generate": "typeorm-ts-node-esm migration:generate -d build/dataSource.js",
"migration:revert": "typeorm-ts-node-esm migration:revert -d build/dataSource.js",
"migration:run": "typeorm-ts-node-esm migration:run -d build/dataSource.js",
"registercommands": "node build/registerCommands.js",
"unregistercommands": "node build/unregisterCommands.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "r-o-b-o-t-o",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.2.5",
"@types/node-cron": "^3.0.7",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"concurrently": "^8.0.1",
"eslint": "^8.41.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.0.4"
},
"dependencies": {
"@discordjs/builders": "^1.6.3",
"@discordjs/rest": "^1.7.1",
"csv": "^6.3.1",
"discord-api-types": "^0.37.43",
"discord.js": "^14.11.0",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"glob-promise": "^6.0.2",
"nanoid": "^3.3.6",
"node-cron": "^3.0.2",
"node-fetch": "^2.6.11",
"query-string": "^7.1.3",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21",
"sqlite3": "^5.1.6",
"typeorm": "^0.3.16",
"typeorm-naming-strategies": "^4.1.0",
"ws": "^8.13.0"
}
}