-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.64 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.64 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
{
"name": "twincity-ui",
"version": "0.1.0",
"private": true,
"description": "Digital twin operations console with reviewable replay, dispatch, and live-ingest surfaces.",
"homepage": "https://twincity-ui.pages.dev",
"repository": {
"type": "git",
"url": "https://github.com/KIM3310/twincity-ui.git"
},
"keywords": [
"digital-twin",
"operations-console",
"next-js",
"react",
"typescript",
"spatial-mapping"
],
"license": "MIT",
"author": "Doeon Kim",
"type": "module",
"scripts": {
"dev": "next dev --webpack --hostname 127.0.0.1",
"dev:lan": "next dev --webpack --hostname 0.0.0.0",
"dev:turbo": "next dev --turbo --hostname 127.0.0.1",
"open:local": "bash ./tools/open_local.sh",
"exercise:runtime": "node tools/exercise_runtime.mjs",
"load:runtime": "node tools/load_runtime.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:proof": "vitest run tests/runtimeRoutes.test.ts tests/landingPage.test.ts tests/serviceMeta.test.ts",
"build": "next build",
"start": "next start",
"lint": "eslint . --max-warnings=0",
"verify": "npm run lint && npm run typecheck && npm run test && npm run build"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"three": "^0.182.0"
},
"devDependencies": {
"@types/node": "^20.19.0",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.182.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"typescript": "5.5.4",
"vitest": "^3.2.4"
}
}