-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·56 lines (56 loc) · 1.42 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
{
"name": "votebot",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"docs": "ts-node . --gen-docs",
"serve": "serve docs",
"build": "tsc",
"build-watch": "tsc --watch",
"run-slow": "ts-node .",
"run-built": "node built",
"lint": "eslint index.ts bot.ts src && tsc --noEmit"
},
"dependencies": {
"async-request": "^1.2.0",
"bookshelf": "^1.1.0",
"deep-equal": "^2.0.5",
"discord.js": "^14.11.0",
"fuse.js": "^5.0.7-beta",
"he": "^1.2.0",
"html-minifier": "^4.0.0",
"js-yaml": "^3.13.1",
"knex": "^0.20.12",
"moment": "^2.24.0",
"moment-duration-format": "^2.3.2",
"node-fetch": "^2.6.0",
"pg": "^8.5.1",
"sqlite3": "^5.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/deep-equal": "^1.0.1",
"@types/he": "^1.1.0",
"@types/html-minifier": "^3.5.3",
"@types/js-yaml": "^3.12.2",
"@types/moment-duration-format": "^2.2.2",
"@types/node": "^17.0.18",
"@types/node-fetch": "^2.5.5",
"@types/request": "^2.48.2",
"@types/ws": "^7.2.2",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"discord-api-types": "^0.37.15",
"discord-markdown": "^2.3.1",
"eslint": "^7.27.0",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"prettier": "^1.18.2",
"source-map-support": "^0.5.13",
"static-server": "^2.2.1",
"ts-node": "^8.4.1",
"typescript": "^4.5.5"
},
"packageManager": "[email protected]"
}