forked from rbredtech/tv-insight-hbbtv-tracking-script
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.92 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.92 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
{
"name": "tv-insight-hbbtv-tracking-script",
"version": "2.1.0",
"main": "mock-session-application/session-application.ts",
"scripts": {
"mock-hbbtv-app": "ts-node mock-hbbtv-application/hbbtv-server.ts",
"mock-session-server": "ts-node mock-session-application/session-server.ts",
"mock": "concurrently \"yarn mock-session-server\" \"yarn mock-hbbtv-app\"",
"dev": "concurrently \"yarn mock\" \"wait-on http://localhost:3000/health && wait-on http://localhost:8080/health && open http://localhost:8080\"",
"test": "jest --verbose=true --silent --detectOpenHandles",
"ci": "start-server-and-test mock-session-server http://localhost:3000/health test",
"lint": "eslint --color --ext .ts mock-session-application",
"lint:apply": "eslint --color --ext .ts mock-session-application --fix"
},
"repository": "git@github.com:rbredtech/tv-insight-hbbtv-tracking-script.git",
"author": "Daniel Kocsan <daniel.kocsan@tv-insight.com>",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"source-map-support": "^0.5.21",
"uuid": "^9.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@jest/types": "^29.4.2",
"@tsconfig/node16": "^1.0.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/puppeteer": "^7.0.4",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"concurrently": "^7.6.0",
"dotenv-load": "^2.0.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.2",
"prettier": "^2.8.4",
"puppeteer": "^19.7.3",
"start-server-and-test": "^2.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"wait-on": "^7.0.1"
}
}