-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.73 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.73 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
{
"name": "stargate",
"version": "3.0.0",
"author": "Joe Hacobian",
"license": "Affero GPL v3.0",
"type": "module",
"scripts": {
"start": "rm -rf dist .parcel-cache && npm run build && npm run server",
"server": "bun run server/server.ts --hostname=0.0.0.0 --server-port=443 --admin-password=testing123",
"build": "parcel build src/index.html --dist-dir dist",
"dev": "parcel serve src/index.html --https --cert ./server.cert --key ./server.key --port 444",
"clean": "rm -rf dist .parcel-cache",
"test": "vitest"
},
"keywords": [],
"description": "WebSocket-based real-time collaboration platform with Aurelia 2.0 and TypeScript",
"dependencies": {
"@aurelia/kernel": "^2.0.0-beta.24",
"@aurelia/metadata": "^2.0.0-beta.24",
"@aurelia/runtime-html": "^2.0.0-beta.24",
"@libsql/client": "^0.15.9",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.3",
"@types/multer": "^1.4.13",
"@types/ws": "^8.18.1",
"argparse": "^2.0.1",
"aurelia": "^2.0.0-beta.24",
"better-sqlite3": "^12.1.1",
"colors": "^1.4.0",
"express": "^5.1.0",
"minisearch": "^7.1.2",
"multer": "^2.0.1",
"node-forge": "^1.3.1",
"selfsigned": "^3.0.1",
"shorthash2": "^1.0.5",
"sql.js": "^1.13.0",
"ws": "^8.18.2"
},
"devDependencies": {
"@aurelia/parcel-transformer": "^2.0.0-beta.24",
"@parcel/transformer-typescript-tsc": "^2.15.4",
"@types/argparse": "^2.0.17",
"@types/node": "^24.0.6",
"npm-run-all": "^4.1.5",
"os-browserify": "^0.3.0",
"parcel": "^2.15.4",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"typescript": "^5.8.3",
"util": "^0.12.5",
"vitest": "^3.2.4",
"vitest-websocket-mock": "^0.5.0"
}
}