-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.23 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.23 KB
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
{
"name": "@quantel-http-transformer-proxy/generic",
"version": "1.53.0",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.json",
"__test": "jest"
},
"dependencies": {
"@koa/bodyparser": "^6.1.0",
"@koa/cors": "^5.0.0",
"@sofie-package-manager/api": "1.53.0",
"got": "^11.8.6",
"koa": "^3.1.2",
"koa-range": "^0.3.0",
"koa-ratelimit": "^5.0.1",
"koa-router": "^12.0.0",
"mime-types": "^2.1.28",
"pretty-bytes": "^5.5.0",
"tslib": "^2.1.0",
"underscore": "^1.12.0",
"xml2js": "^0.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@koa/cors": "^5.0.0",
"@types/koa": "^2.13.5",
"@types/koa-range": "^0.3.2",
"@types/koa-ratelimit": "^5.0.0",
"@types/koa-router": "^7.4.4",
"@types/koa__cors": "^4.0.0",
"@types/mime-types": "^2.1.0",
"@types/node": "^24",
"@types/underscore": "^1.10.24",
"@types/xml2js": "^0.4.7",
"@types/yargs": "^17.0.24",
"rimraf": "^5.0.5"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"engines": {
"node": ">=24"
},
"lint-staged": {
"*.{js,css,json,md,scss}": [
"prettier"
],
"*.{ts,tsx}": [
"eslint"
]
}
}