-
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.94 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.94 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": "@hexafield/conjure",
"version": "0.0.0",
"description": "",
"main": "",
"scripts": {
"test": "vitest run --config=../../../../../vitest.client.config.ts",
"check-errors": "tsc --noemit",
"dev": "cross-env APP_ENV=development NODE_OPTIONS=--max_old_space_size=20480 vite",
"cors": "tsx ./src/cors.ts",
"build": "cross-env NODE_OPTIONS=--max_old_space_size=10240 vite build",
"build:worker": "esbuild src/tools/graph/forcegraph/ForceGraphWorker.ts --bundle --format=esm --outfile=src/tools/graph/forcegraph/ForceGraphWorker.bundle.js --loader:.wasm=binary",
"build:dag-worker": "esbuild src/tools/graph/dag/DagWorker.ts --bundle --format=esm --outfile=src/tools/graph/dag/DagWorker.bundle.js --loader:.wasm=binary",
"start": "tsx server.js",
"fileserver": "tsx fileserver.ts",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"format-scss": "stylelint \"**/*.scss\" --fix",
"format-staged": "lint-staged",
"local": "npm run localbuild && npm run localstart",
"localbuild": "cross-env APP_ENV=production VITE_LOCAL_BUILD=true npm run build",
"localstart": "cross-env APP_ENV=production VITE_LOCAL_BUILD=true npm run start"
},
"dependencies": {
"@coasys/ad4m": "0.10.1",
"@coasys/ad4m-connect": "0.10.1",
"@hexafield/jsonpath-object-transform": "^2.0.0",
"@mlc-ai/web-llm": "^0.2.79",
"canonicalize": "^2.1.0",
"d3": "7.9.0",
"d3-force-3d": "^3.0.5",
"dat.gui": "^0.7.9",
"express": "^4.19.2",
"json-schema-library": "^10.2.1",
"json-schema-to-ts": "^3.1.1",
"jsonpath-plus": "10.3.0",
"maxrects-packer": "2.7.3",
"monaco-editor": "^0.52.2",
"react-rnd": "^10.5.2",
"reactflow": "^11.10.0",
"ts-morph": "^26.0.0"
},
"license": "ISC",
"pre-commit": [
"format-staged"
],
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write \"**/*.{ts,tsx}\""
],
"*.scss": [
"stylelint \"**/*.scss\" --fix"
]
}
}