-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.41 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
{
"name": "signal-range",
"version": "1.1.0",
"description": "Signal Range: Space Electronic Warfare Lab",
"main": "dist/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --mode production",
"dev": "cross-env NODE_ENV=development webpack serve --mode development",
"deploy": "npm run build && wrangler deploy",
"deploy:dry-run": "npm run build && wrangler deploy --dry-run",
"deploy:full": "npm run build && npm run r2:sync && wrangler deploy",
"preview": "wrangler dev",
"r2:sync": "node scripts/sync-r2-assets.js",
"r2:sync:dry": "node scripts/sync-r2-assets.js --dry-run",
"r2:sync:verbose": "node scripts/sync-r2-assets.js --verbose",
"r2:pull": "node scripts/sync-r2-assets.js --pull",
"r2:pull:dry": "node scripts/sync-r2-assets.js --pull --dry-run",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "npx eslint",
"lcov": "npx tsx build/open-lcov.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report"
},
"keywords": [
"space",
"electronic-warfare",
"spectrum-analyzer"
],
"author": "Theodore Kruczek",
"license": "AGPL-3.0",
"devDependencies": {
"@playwright/test": "^1.48.0",
"@types/draggabilly": "^3.0.0",
"@types/node": "^20.19.24",
"@vitest/coverage-v8": "^4.0.18",
"baseline-browser-mapping": "^2.9.11",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"copy-webpack-plugin": "^13.0.1",
"cross-env": "^10.1.0",
"css-loader": "^6.8.1",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"jsdom": "^28.0.0",
"style-loader": "^3.3.3",
"supabase": "^2.67.3",
"ts-loader": "^9.5.1",
"tsx": "^4.20.6",
"typescript": "^5.3.3",
"vitest": "^4.0.18",
"vitest-canvas-mock": "^1.1.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.2",
"wrangler": "^4.54.0"
},
"dependencies": {
"@supabase/supabase-js": "^2.81.1",
"@tabler/core": "^1.4.0",
"dotenv": "^17.2.3",
"draggabilly": "^3.0.0",
"gl-matrix": "^3.4.4",
"ootk": "^5.1.1",
"socket.io-client": "^4.5.4",
"uuid": "^13.0.0"
}
}