This repository has been archived by the owner on Apr 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
{
"name": "course-bot",
"version": "1.0.0",
"main": "bot.ts",
"private": true,
"author": "Titus Entertainment <properllerbucher@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/ms": "^0.7.30",
"@types/node": "^12.7.1",
"@types/restify": "^7.2.12",
"@types/restify-errors": "^4.3.3",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"eslint": "^6.5.1",
"eslint-config-marine": "^5.1.0",
"eslint-config-prettier": "^6.4.0",
"jsdoc": "^3.6.3",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"ts-node": "^8.3.0",
"ts-node-dev": "^1.0.0-pre.40",
"typedoc": "^0.15.0",
"typedoc-dark-theme": "^0.0.11",
"typescript": "^3.5.3"
},
"dependencies": {
"@ayana/logger": "^2.1.1",
"common-tags": "^1.8.0",
"discord-akairo": "discord-akairo/discord-akairo",
"discord.js": "discordjs/discord.js",
"dotenv": "^8.0.0",
"googleapis": "^42.0.0",
"moment": "^2.24.0",
"moment-duration-format": "^2.3.2",
"mongoose": "^5.7.5",
"mongoose-timestamp": "^0.6.0",
"ms": "^2.1.2",
"node-gyp": "^5.0.3",
"pluralize": "^8.0.0",
"pm2": "^3.5.1",
"typedocs": "^0.6.6"
},
"extends": "marine/prettier/node",
"globals": {
"BigInt": true
},
"scripts": {
"ts-compile": "tsc -p tsconfig.json --watch",
"compile": "tsc -p tsconfig.json",
"api": "nodemon dist/api/app.js",
"bot": "tsc -p tsconfig.json && nodemon dist/bot/bot.js",
"docs": "typedoc --theme ./node_modules/typedoc-dark-theme/bin/default --tsconfig tsconfig.json --out ./docs/ ./src/*"
}
}