-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.8 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
{
"name": "cyphers-discord-bot",
"version": "2.1.1",
"main": "dist/index.js",
"author": "Insiro",
"license": "MIT",
"private": true,
"scripts": {
"tsc": "tsc",
"build": "yarn tsc -p tsconfig.json",
"lint": "yarn eslint \"src/**/*\"",
"lint-fix": "yarn lint --fix",
"start": "ts-node src/index.ts",
"start:prod": "yarn node dist/index.js",
"makemigration": "yarn typeorm migration:generate -n",
"migrates": "yarn typeorm migration:run",
"migrate:rollback": "yarn typeorm migration:revert"
},
"dependencies": {
"@discordjs/builders": "^0.15.0",
"@discordjs/rest": "^0.5.0",
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.12",
"class-validator": "^0.13.2",
"cross-env": "^7.0.3",
"discord-command-parser": "^1.5.3",
"discord.js": "^13.9.1",
"dotenv": "^16.0.1",
"node-schedule": "^2.1.0",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.7",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/cheerio": "^0.22.31",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.1",
"@types/node-schedule": "^2.1.0",
"@types/pg": "^8.6.5",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"discord-api-types": "^0.36.3",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"packageManager": "yarn@3.2.2"
}