forked from barankyle/xr3ngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
Β·170 lines (170 loc) Β· 7.39 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "etherealengine",
"description": "Engine, Server & Devops powering Ethereal Engine. Please support at https://opencollective.com/etherealengine",
"version": "0.0.0",
"homepage": "etherealengine.org",
"private": true,
"bin": {
"etherealengine": "npx/cli.js"
},
"workspaces": [
"packages/*",
"packages/projects/projects/*"
],
"keywords": [
"three",
"three.js",
"ecs",
"webgl",
"mmo",
"game engine",
"webrtc",
"productivity",
"xr",
"vr"
],
"author": {
"name": "Ethereal Engine",
"email": "[email protected]"
},
"entrypoint": {},
"contributors": [],
"bugs": {},
"directories": {
"lib": "packages/server-core/src/user",
"config": "config/"
},
"engines": {
"node": ">= 18.12.0"
},
"npmClient": "npm",
"scripts": {
"build-client": "cd packages/client && npm run build",
"check": "npm run lint && npm run check-errors && npm run test && npm run test:projects && npm run build-client",
"check-db-exists": "cross-env ts-node --swc scripts/check-db-exists.ts",
"check-db-exists-only": "cross-env ts-node --swc scripts/check-db-exists-only.ts",
"check-errors": "lerna run check-errors --parallel",
"clean-node-modules": "npx rimraf node_modules && npx rimraf package-lock.json && npx lerna exec npx rimraf node_modules && npx lerna exec npx rimraf package-lock.json",
"cleanup-tests": "node tests/cleanup-tests.js",
"clear-projects-rebuild": "cross-env ts-node --swc scripts/clear-projects-rebuild",
"depcheck": "lerna exec --no-bail --stream -- depcheck",
"dev": "npm run dev-docker && concurrently -n agones,server,client,taskserver npm:dev-agones-silent npm:dev-server npm:dev-client npm:dev-taskserver",
"dev-agones": "cd scripts && ./start-agones.sh",
"dev-agones-silent": "npm run dev-agones &> /dev/null",
"dev-client": "cd packages/client && npm run dev",
"dev-taskserver": "cd packages/taskserver && npm run dev",
"dev-docker": "cd scripts && docker-compose up -d",
"dev-tabs": "cd scripts && ./dev-tabs.sh",
"fetch-projects": "lerna exec 'git fetch -p && git rebase' --parallel --ignore @etherealengine/*",
"dev-nginx": "",
"dev-reinit": "npm run dev-docker && cd packages/server && npm run dev-reinit-db",
"dev-server": "cd packages/server && npm run dev",
"dev-windows": "npm run dev-docker && concurrently -n agones,server,client npm:dev-agones-silent npm:dev-server npm:dev-client",
"diff": "lerna diff",
"edit": "node scripts/open-editor.js",
"format": "prettier --write \"packages/**/*.{ts,tsx}\"",
"format-scss": "stylelint \"packages/**/*.scss\" --fix",
"format-staged": "lint-staged",
"init-db-production": "cross-env APP_ENV=production FORCE_DB_REFRESH=true EXIT_ON_DB_INIT=true ts-node --swc packages/server/src/index.ts",
"install-projects": "ts-node --swc scripts/install-projects.js",
"lint": "prettier --check \"packages/**/*.{ts,tsx}\"",
"local": "npm run dev-docker && cross-env VITE_LOCAL_BUILD=true LOCAL=true concurrently -n agones,server,worldserver,mediaserver,client,files npm:dev-agones-silent \"cd packages/server && npm run start\" \"cd packages/instanceserver && npm run start\" \"cd packages/instanceserver && npm run start-channel\" \"cd packages/client && npm run local\" \"cd packages/server && npm run serve-local-files\"",
"make-user-admin": "ts-node --swc scripts/make-user-admin.js",
"postinstall": "patch-package",
"precommit": "no-master-commits -b master",
"prepare-database": "cross-env APP_ENV=production PREPARE_DATABASE=true EXIT_ON_DB_INIT=true ts-node --swc packages/server/src/index.ts",
"pretest": "cross-env TEST=true npm run dev-reinit",
"publish": "lerna publish from-package --yes --registry https://registry.npmjs.org",
"publish-npm": "lerna publish from-package --yes --no-verify-access --ignore-scripts --registry https://registry.npmjs.org",
"publish-github": "lerna publish from-package --yes --no-verify-access --ignore-scripts --registry https://npm.pkg.github.com",
"list-client-s3-files-to-delete": "cross-env APP_ENV=production ts-node --swc scripts/get-deletable-client-files.ts",
"delete-old-s3-files": "cross-env APP_ENV=production ts-node --swc scripts/delete-old-s3-files.ts",
"push-client-dist-to-s3": "cross-env APP_ENV=production ts-node --swc scripts/push-client-to-s3.ts",
"copy-client-to-localstorage": "cross-env APP_ENV=production ts-node --swc scripts/copy-client-to-localstorage.ts",
"start": "npm run dev",
"test": "cross-env TEST=true lerna run test",
"test-e2e": "ts-node --swc scripts/run_e2e_tests.ts",
"test:projects": "cross-env TEST=true lerna run test:projects",
"test:ci": "cpy --no-overwrite --rename=.env.local '.env.local.default' . && cross-env CI=true npm run test",
"validate": "npm run lint && lerna run validate",
"version-increment": "lerna version --conventional-commits --yes",
"version-increment-no-tag": "lerna version --conventional-commits --yes --no-git-tag-version",
"bump-project-versions": "cross-env ts-node --swc scripts/bump-project-versions.js",
"update-site-manifest": "cross-env ts-node --swc scripts/update-site-manifest.ts",
"create-build-status": "cross-env ts-node --swc scripts/create-build-status.ts",
"record-build-error": "cross-env ts-node --swc scripts/record-build-error.ts",
"record-build-success": "cross-env ts-node --swc scripts/record-build-success",
"updateProject": "cross-env ts-node --swc scripts/update-project.ts",
"updateCronjobImage": "cross-env ts-node --swc scripts/update-cronjob-image.ts"
},
"types": "lib/",
"pre-commit": [
"format-staged"
],
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
],
"*.scss": [
"stylelint --fix"
]
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "3.3.1",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@swc/core": "^1.2.210",
"@types/app-root-path": "1.2.4",
"@types/cli": "0.11.21",
"@types/mocha": "10.0.0",
"@types/pino": "^7.0.5",
"@types/primus": "^7.3.6",
"@typescript-eslint/eslint-plugin": "5.47.0",
"@typescript-eslint/parser": "5.47.0",
"concurrently": "7.1.0",
"depcheck": "1.4.3",
"eslint": "8.30.0",
"jsdom": "^20.0.2",
"kill-port": "1.6.1",
"lint-staged": "12.3.7",
"mocha": "10.0.0",
"no-master-commits": "1.1.1",
"package-json-type": "1.0.3",
"pre-commit": "1.2.2",
"prettier": "2.8.1",
"react-dnd": "16.0.0",
"react-router-dom": "6.8.1",
"rimraf": "^3.0.2",
"stylelint": "^14.6.1",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-scss": "^4.2.0",
"supertest": "6.2.2"
},
"dependencies": {
"@feathersjs/commons": "5.0.0",
"@feathersjs/errors": "5.0.0",
"@feathersjs/feathers": "5.0.0",
"@storybook/builder-vite": "0.1.37",
"app-root-path": "3.0.0",
"cli": "1.0.1",
"dotenv": "14.3.2",
"expect-puppeteer": "^7.0.1",
"feathers-swagger": "3.0.0",
"fix-esm": "^1.0.1",
"jest-enzyme": "4.2.0",
"lerna": "^6.6.1",
"moment": "2.29.4",
"nodemon": "2.0.22",
"patch-package": "^6.5.1",
"pino": "^7.10.0",
"pino-pretty": "^7.6.1",
"postcss": "^8.4.16",
"qrcode.react": "^3.1.0",
"react-json-view": "^1.21.3",
"tailwindcss": "^3.2.7",
"three": "0.150.1",
"ts-node": "10.8.2",
"typescript": "4.9.5",
"vite-plugin-node": "^1.0.0",
"ws": "8.12.0"
}
}