-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.9 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.9 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
{
"name": "webjamsocketserver",
"description": "Uses latest version of socketcluster-server",
"version": "3.0.0",
"license": "MIT",
"type": "module",
"main": "build/src/index.js",
"engines": {
"node": "24.15.0",
"npm": "11.12.1"
},
"contributors": [
{
"name": "Jonathan Gros-Dubois",
"email": "grosjona@yahoo.com.au"
},
{
"name": "Joshua V Sherman",
"email": "joshua.v.sherman@gmail.com"
}
],
"keywords": [
"websocket",
"server",
"realtime",
"cluster",
"scalable",
"typescript"
],
"readmeFilename": "README.md",
"imports": {
"#src/*": "./build/src/*",
"#lib/*": "./build/src/lib/*"
},
"scripts": {
"rmrf": "rimraf build && rimraf JaMmusic && rimraf coverage",
"dev": "rimraf build && tsc && concurrently --raw \"npm:ts-start\" \"npm:ts-watch\"",
"test": "eslint . && rimraf coverage && npm run test:unit",
"build:front": "./postinstallJaM.sh && rimraf ./JaMmusic/src && rimraf ./JaMmusic/test",
"build:prod": "(cd JaMmusic || exit; npm start -- build)",
"cleaninstall": "rimraf yarn.lock && rimraf package-lock.json && rimraf node_modules && npm cache clean --force && npm install",
"start": "node build/src/index.js",
"postinstall": "npm run rmrf && tsc -p tsconfig.prod.json && npm run build:front",
"ts-start": "cross-env DEBUG=WebJamSocketServer:* node --watch --trace-warnings build/src/index.js",
"ts-watch": "tsc -w",
"test:lint": "eslint . --fix",
"test:local": "eslint . --fix && npm run test:unit && npm run cc",
"test:unit": "vitest run",
"test:prod": "rm -rf node_modules build && npm install --omit=dev && node scripts/smoke-start.mjs"
},
"dependencies": {
"@types/debug": "^4.1.7",
"@types/eetase": "^4.0.2",
"@types/express-sslify": "^1.2.2",
"@types/morgan": "^1.9.4",
"@types/node": "^24.0.0",
"@types/scc-broker-client": "^8.0.3",
"@types/socketcluster-server": "^20.0.0",
"connect": "^3.7.0",
"consumable-stream": "^3.0.0",
"debug": "^4.3.4",
"dotenv": "^17.4.2",
"eetase": "^7.0.1",
"express": "^5.2.1",
"express-sslify": "^1.2.0",
"jsonwebtoken": "^9.0.1",
"mongoose": "^9.6.1",
"morgan": "^1.10.0",
"rimraf": "^6.1.3",
"sc-errors": "^3.0.0",
"scc-broker-client": "^9.2.1",
"serve-static": "^2.2.1",
"snyk": "^1.1114.0",
"socketcluster-client": "^20.0.1",
"socketcluster-server": "^20.0.0",
"supports-color": "^10.2.2",
"typescript": "^6.0.3",
"uuid": "^14.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@vitest/coverage-v8": "^4.1.5",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"eslint": "^10.2.1",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-security": "^4.0.0",
"globals": "^17.5.0",
"supertest": "^7.2.2",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.5"
}
}