-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 5.25 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 5.25 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "talkcontrol",
"version": "0.6.0",
"scripts": {
"clean": "rm -rf dist",
"create-tunnels": "npx tsx src/environment/create-tunnels.ts",
"get-started": "npx tsx src/environment/get-started.ts",
"start": "npx npm-run-all --parallel create-tunnels tc-server tc-showcase start-controller-after-server when-controller-is-started",
"start-controller-after-server": "wait-on tcp:3001 && wait-on tcp:3002 && npm run tc-controller-and-component",
"when-controller-is-started": "wait-on tcp:3000 && npm run get-started",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "npm run coverage:clean && npm run coverage:jsdom && npm run coverage:browser && npm run coverage:merge",
"coverage:clean": "rm -rf .vitest-reports coverage",
"coverage:jsdom": "vitest run --reporter=blob --outputFile=.vitest-reports/jsdom.blob --coverage --coverage.thresholds.lines=0 --coverage.thresholds.statements=0 --coverage.thresholds.functions=0 --coverage.thresholds.branches=0",
"coverage:browser": "vitest run --config vitest.browser.config.ts --reporter=blob --outputFile=.vitest-reports/browser.blob --coverage --coverage.thresholds.lines=0 --coverage.thresholds.statements=0 --coverage.thresholds.functions=0 --coverage.thresholds.branches=0",
"coverage:merge": "vitest --mergeReports=.vitest-reports --reporter=default --coverage",
"build": "vite build",
"smoke:server": "npx tsx src/server/index.ts",
"start:e2e": "npx npm-run-all --parallel tc-server tc-showcase tc-controller-and-component",
"lint": "eslint --fix . --cache",
"lint:check": "eslint . --cache",
"tc-showcase": "node scripts/sync-showcase-reveal.mjs && npx http-server showcase -s -p 3002",
"tc-controller-and-component": "vite --port 3000",
"tc-server": "npx nodemon --exec \"npx tsx\" src/server/index.ts",
"docs:dev": "vitepress dev docs-sources",
"docs:build": "npm run jsdoc:build && vitepress build docs-sources --outDir docs-dist",
"jsdoc:build": "node scripts/jsdoc-build.mjs",
"test:components": "vitest run --config vitest.browser.config.ts",
"test:e2e": "node node_modules/@playwright/test/cli.js test --config playwright.config.cjs",
"test:e2e:report": "node node_modules/@playwright/test/cli.js show-report",
"postinstall": "node scripts/ensure-config.mjs",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TalkControl/talk-control.git"
},
"contributors": [
"Gildas Morel des Vallons <gildas2k@gmail.com>",
"Jean-François Garreau <jean.francois.garreau@gmail.com>",
"Julien Tanguy <julien.tanguy@jhome.fr>",
"Tristan Elain <elain.t@sfeir.com>",
"Nicolò <nicosh>",
"Karthik Shetty <karthikshetty03>",
"Luis Contreras <devrasec>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TalkControl/TalkControl/issues"
},
"homepage": "https://github.com/TalkControl/TalkControl#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/http-proxy": "^1.17.17",
"@types/node": "^26.1.1",
"@types/qrcode": "^1.5.6",
"@types/supertest": "^7.2.0",
"@vitest/browser": "^4.1.10",
"@vitest/browser-playwright": "^4.1.10",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/eslint-plugin": "^1.6.23",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^63.0.13",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.7.0",
"husky": "^9.1.7",
"jsdoc-to-markdown": "^9.1.3",
"jsdom": "^29.1.1",
"lit": "^3.3.3",
"nodemon": "^3.1.14",
"playwright": "^1.61.1",
"prettier": "^3.9.5",
"pretty-quick": "^4.2.2",
"reveal.js": "^6.0.1",
"supertest": "^7.2.2",
"tsx": "^4.23.0",
"typedoc": "^0.28.20",
"typedoc-plugin-markdown": "^4.12.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.4",
"vitepress": "^2.0.0-alpha.18",
"vitest": "^4.1.10"
},
"directories": {
"test": "test"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.3.0",
"@fortawesome/free-solid-svg-icons": "^7.3.0",
"@ngrok/ngrok": "^1.7.0",
"bulma": "^1.0.4",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"express": "^5.2.1",
"http-proxy": "^1.18.1",
"http-server": "^14.1.1",
"npm-run-all2": "^9.0.2",
"qrcode": "^1.5.4",
"query-selector-shadow-dom": "^1.0.1",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"wait-on": "^9.0.10"
},
"overrides": {
"y18n": "^4.0.1"
},
"browserslist": [
"defaults",
"maintained node versions"
],
"nodemonConfig": {
"ignore": [
"dist/*",
"test/*",
"showcase/*",
"src/client/*"
]
}
}