-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.97 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
57
58
59
{
"main": "app.js",
"engines": {
"node": ">=18"
},
"license": "MIT",
"scripts": {
"start": "node ./dist/app.js",
"build": "tsc",
"watch": "nodemon --watch 'src/**/*' -e ts --exec 'ts-node' ./src/app.ts",
"lint": "node_modules/tslint/bin/tslint -c tslint.json -p tsconfig.json --force",
"fix": "node_modules/tslint/bin/tslint -c tslint.json -p tsconfig.json --fix --force",
"image:build": "docker build --tag frikanalen/atem-control .",
"image:run": "docker run --rm -ti -p 3000:3000 frikanalen/atem-control",
"test": "jest",
"coverage": "NODE_ENV=test node_modules/nyc/bin/nyc.js --reporter=html --reporter=text node_modules/mocha/bin/mocha --exit -r ts-node/register ./test/**/*.spec.ts",
"coverage:coveralls": "NODE_ENV=test node_modules/nyc/bin/nyc.js --reporter=lcov --reporter=text-lcov node_modules/mocha/bin/mocha --exit -r ts-node/register ./test/**/*.spec.ts | coveralls"
},
"dependencies": {
"@koa/bodyparser": "^5.0.0",
"@koa/router": "^12.0.0",
"atem-connection": "^3.2.0",
"axios": "^1.4.0",
"koa": "^2.14.2",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-router": "^12.0.0",
"winston": "^3.9.0",
"yup": "^1.2.0"
},
"devDependencies": {
"@swc/core": "^1.3.68",
"@types/co-body": "^6.1.0",
"@types/jest": "^29.5.2",
"@types/koa": "^2.13.6",
"@types/koa-logger": "^3.1.2",
"@types/koa-router": "^7.4.4",
"@types/koa__router": "^12.0.0",
"@types/node": "^20.4.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.6.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"trailingComma": "all",
"arrowParens": "always"
}
}