forked from twlite/ticketbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "ticketbot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prod": "ts-node ./src/index.ts",
"dev": "ts-node-dev --transpileOnly ./src/index.ts",
"lint": "eslint -c ./.eslintrc.js --ext .ts .",
"dry": "tsc --noEmit",
"test": "npm run lint && npm run dry"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dankmemer/ticketbot.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dankmemer/ticketbot/issues"
},
"homepage": "https://github.com/dankmemer/ticketbot#readme",
"dependencies": {
"ts-node": "^8.5.4",
"eris": "^0.11.2",
"eris-lavalink": "^1.0.2",
"ioredis": "^4.16.0",
"mongodb": "^3.4.1",
"prom-client": "^11.5.3",
"rethinkdbdash": "^2.3.31",
"yaml": "^1.7.2"
},
"devDependencies": {
"@types/ioredis": "^4.14.7",
"@types/rethinkdbdash": "git+https://github.com/types/rethinkdbdash.git",
"@types/yaml": "^1.2.0",
"@types/mongodb": "^3.3.14",
"@types/node": "^13.1.2",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"typescript": "^3.8.3",
"ts-node-dev": "^1.0.0-pre.44",
"eslint": "^6.8.0"
}
}