forked from m0ngr31/EPlusTV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "eplustv",
"version": "2.1.6",
"description": "",
"scripts": {
"start": "ts-node index.ts",
"prepare": "husky install"
},
"keywords": [],
"author": "Joe Ipson <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^1.2.2",
"axios-curlirize": "^1.3.7",
"crypto-js": "^4.2.0",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"hls-parser": "^0.10.6",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"nedb-promises": "^5.0.1",
"sockette": "^2.0.6",
"ws": "^8.9.0",
"xml": "^1.0.1"
},
"devDependencies": {
"@types/crypto-js": "^4.2.1",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.174",
"@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"eslint-plugin-sort-keys-custom-order-fix": "^0.1.1",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"prettier": "2.3.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"lint-staged": {
"!(slate/**).ts": [
"prettier --write",
"eslint --fix --format stylish"
]
}
}