-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "wise-eyes-core",
"version": "1.1.2",
"description": "Web server to monitor the status of owlcms",
"keywords": [
"feed",
"livestream",
"monitor",
"obs",
"owlcms",
"vMix",
"watch",
"weightlifting"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --pretty -p tsconfig.json",
"dev": "tsx watch src/index.ts",
"lint": "concurrently \"npm:lint:*\"",
"lint:eslint": "npx eslint .",
"lint:ts": "tsc --noEmit --pretty -p tsconfig.json",
"prepublish": "npm run build",
"start": "node dist/index.js",
"test": "npm run lint"
},
"author": {
"name": "Scott González",
"email": "[email protected]",
"url": "http://scottgonzalez.com"
},
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"deep-equal": "^2.2.3",
"express": "^4.21.1",
"express-ws": "^5.0.2",
"klona": "^2.0.6",
"ws": "^8.18.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/cors": "^2.8.17",
"@types/deep-equal": "^1.0.4",
"@types/express": "^4.17.21",
"@types/express-ws": "^3.0.5",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"concurrently": "^9.0.1",
"eslint": "^8.57.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.4.3"
}
}