-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.1 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.1 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
{
"name": "3d-web-experience",
"private": true,
"packageManager": "npm@9.6.7",
"type": "module",
"engines": {
"node": "20.x"
},
"scripts": {
"start": "npm run start -w @apps/multi-user-3d-web-experience-server",
"link-all": "lerna exec \"npm link\" --no-private && npm run print-links",
"print-links": "echo \"Run this command in the package you would like to link this repo's packages to:\n\"; echo \"npm link\" $(lerna ls --loglevel=error)",
"version": "lerna version --no-push --force-publish",
"build": "turbo run build --output-logs=full",
"clear-cache": "turbo clean",
"depcheck-all": "depcheck --quiet && turbo run depcheck --concurrency=5 --output-logs=full --continue=always",
"iterate": "npm run build && turbo run iterate --env-mode=loose --concurrency=1000 --output-logs=full",
"iterate:killall": "killall node esbuild",
"lint-all": "turbo run lint --concurrency=5 --output-logs=full --continue=always",
"lint-fix-all": "turbo run lint-fix --concurrency=5 --output-logs=full",
"test-all": "turbo run test --concurrency=5 --output-logs=full --continue=always",
"type-check-all": "turbo run type-check --concurrency=5 --output-logs=full --continue=always"
},
"workspaces": [
"packages/*",
"packages/deltanet/*",
"apps/**"
],
"devDependencies": {
"@types/jju": "^1.4.5",
"@types/resolve": "1.20.6",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"chokidar": "4.0.3",
"cross-env": "^7.0.3",
"depcheck": "1.4.7",
"esbuild": "0.24.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"express-ws": "5.0.2",
"jju": "^1.4.0",
"lerna": "8.1.9",
"prettier": "^3.4.2",
"resolve": "1.22.10",
"rimraf": "^6.0.1",
"tmp": "^0.2.3",
"tree-kill": "^1.2.2",
"tsx": "4.19.2",
"turbo": "2.5.0",
"typescript": "^5.7.3",
"ws": "8.18.0"
}
}