-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 2.13 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
{
"name": "bbot",
"version": "1.0.0",
"description": "The UT99 flavored discord bot for querying servers and carrying out pickup games",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"check:ts": "tsc --noEmit",
"build:js": "babel src -s -d dist --extensions '.ts'",
"build": "npm run clean && npm run check:ts && npm run build:js",
"start": "node -r source-map-support/register dist",
"dev": "ts-node-dev -r tsconfig-paths/register --no-notify --respawn --transpile-only --require dotenv/config src/index.ts",
"migrate": "ts-node-dev --trace-warnings -r tsconfig-paths/register --no-notify --respawn --transpile-only --require dotenv/config src/migrations.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taranvohra/bBot.ts.git"
},
"author": "taranvohra",
"license": "ISC",
"bugs": {
"url": "https://github.com/taranvohra/bBot.ts/issues"
},
"homepage": "https://github.com/taranvohra/bBot.ts#readme",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@types/airbnb__node-memwatch": "^2.0.0",
"@types/fontkit": "^1.8.0",
"@types/geoip-country": "^4.0.0",
"@types/mongoose": "^5.10.3",
"@types/node": "^16.11.7",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.1",
"dotenv": "^8.2.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-node-dev": "^1.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.7.2"
},
"dependencies": {
"@reduxjs/toolkit": "^1.5.0",
"@typegoose/typegoose": "^7.6.0",
"date-fns": "^2.16.1",
"discord.js": "^13.7.0",
"env-var": "^7.0.0",
"fontkit": "^1.8.1",
"geoip-country": "^4.0.62",
"jimp": "^0.16.1",
"mongoose": "^5.10.18",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
}
}