-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.25 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.25 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
{
"name": "calab-monorepo",
"private": true,
"version": "0.0.1",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev -w apps/catune",
"dev:carank": "npm run dev -w apps/carank",
"build": "npm run build:wasm && npm run build:apps",
"build:apps": "node scripts/build-apps.mjs",
"build:pages": "CALAB_PAGES=1 npm run build && node scripts/combine-dist.mjs",
"build:wasm": "cd crates/solver && wasm-pack build --target web --release",
"test": "npm run test --workspaces --if-present",
"test:watch": "npm run test:watch -w apps/catune",
"lint": "eslint apps/ packages/ scripts/",
"lint:fix": "eslint --fix apps/ packages/ scripts/",
"typecheck": "tsc -b apps/catune apps/carank apps/admin apps/cadecon apps/_template",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-plugin-solid": "^0.14.5",
"globals": "^17.3.0",
"jsdom": "^28.0.0",
"prettier": "^3.8.1",
"typescript": "^5.7.0",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.0",
"vite-plugin-solid": "^2.11.10",
"vite-plugin-wasm": "^3.5.0",
"vitest": "^4.0.0"
}
}