forked from mml-io/3d-web-experience
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.75 KB
/
package.json
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
{
"name": "3d-web-experience",
"private": true,
"type": "module",
"engines": {
"node": "20.x"
},
"scripts": {
"build": "lerna run --stream build",
"start": "npm run start -w @example/multi-user-3d-web-experience-server",
"iterate": "npm run build && lerna run --parallel --stream iterate",
"type-check-all": "lerna run --stream --no-bail type-check",
"test-all": "lerna run --parallel --stream --no-bail test",
"lint-all": "lerna run --stream --no-bail lint",
"lint-fix-all": "lerna run --stream --no-bail lint-fix",
"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"
},
"workspaces": [
"packages/*",
"example/**"
],
"devDependencies": {
"@types/jest": "29.5.12",
"@types/jju": "^1.4.5",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"concurrently": "^8.2.2",
"esbuild": "0.20.2",
"esbuild-plugin-copy": "2.1.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jju": "^1.4.0",
"lerna": "8.1.6",
"prettier": "^3.3.2",
"rfc6902": "^5.1.1",
"rimraf": "^5.0.8",
"tmp": "^0.2.3",
"ts-node": "^10.9.2",
"ts-jest": "29.1.5",
"tsx": "4.16.2",
"typescript": "^5.5.3"
}
}