-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.33 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": "dvbrouter",
"version": "1.0.0",
"description": "Proxy and manager of mumudvb instances",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "nodemon --watch \"src/**\" --ext \"ts,json\" --ignore \"src/**/*.spec.ts\" --exec \"tsc && node dist/index.js\"",
"build": "tsc",
"serve": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quetzacoalt91/dvbrouter.git"
},
"author": "Quetzacoalt91",
"license": "MIT",
"bugs": {
"url": "https://github.com/Quetzacoalt91/dvbrouter/issues"
},
"homepage": "https://github.com/Quetzacoalt91/dvbrouter#readme",
"devDependencies": {
"@types/async": "^3.2.15",
"@types/hapi__hapi": "^20.0.12",
"@types/ini": "^1.3.31",
"@types/jest": "^29.1.2",
"@types/node-fetch": "^2.6.2",
"@types/ps-node": "^0.1.1",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"jest": "^29.0.3",
"nodemon": "^2.0.6",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"dependencies": {
"@hapi/hapi": "^20.0.1",
"async": "^3.2.4",
"ffmetadata": "^1.6.0",
"ini": "^1.3.6",
"node-fetch": "^2.6.7",
"ps-node": "^0.1.6"
}
}