-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 931 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 931 Bytes
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
{
"name": "plex-utility-discord-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "tsc",
"compile:watch": "tsc-watch",
"start": "tsc-watch --onSuccess \"nodemon dist\"",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --ext ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^12.12.7",
"axios": "^0.21.1",
"discord.js": "^12.5.2",
"fuzzyset.js": "1.0.6"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/fuzzyset.js": "0.0.2",
"@types/ws": "^7.4.1",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"tsc-watch": "^4.0.0",
"typescript": "^3.7.2"
}
}