forked from barankyle/xr3ngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·136 lines (136 loc) · 5.68 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
{
"name": "xrengine",
"description": "Game Engine, Server & Devops powering The XREngine. Please support XRFoundation https://opencollective.com/xrfoundation",
"version": "0.0.0",
"homepage": "xrengine.io",
"private": true,
"workspaces": [
"packages/*",
"packages/projects/projects/*"
],
"keywords": [
"three",
"three.js",
"ecs",
"webgl",
"mmo",
"game engine",
"webrtc",
"productivity",
"xr",
"vr"
],
"author": {
"name": "XR Engine - XR Foundation",
"email": "info@xrengine.io"
},
"entrypoint": {},
"contributors": [],
"bugs": {},
"directories": {
"lib": "packages/server-core/src/user",
"config": "config/"
},
"engines": {
"node": ">= 16.3.0"
},
"npmClient": "npm",
"scripts": {
"build-publish": "lerna run build-publish --parallel",
"build-client": "cd packages/client && npm run build",
"check": "npm run lint && npm run check-errors && npm run test && npm run test-e2e && 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 npm:dev-agones-silent npm:dev-server npm:dev-client",
"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-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 @xrengine/*",
"dev-nginx": "",
"dev-reinit": "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": "scripts/open_browser.sh editor && scripts/open_browser.sh admin && scripts/open_browser.sh location",
"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",
"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",
"publish-no-verify": "lerna publish from-package --yes --no-verify-access --ignore-scripts",
"publish-github": "lerna publish from-package --yes --no-verify-access --ignore-scripts --registry https://npm.pkg.github.com",
"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",
"update-name-gh-package": "lerna run update-name-gh-package",
"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"
},
"types": "lib/",
"pre-commit": [
"format-staged"
],
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
],
"*.scss": [
"stylelint --fix"
]
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "3.3.1",
"@swc/core": "^1.2.210",
"@types/mocha": "9.1.0",
"@types/pino": "^7.0.5",
"concurrently": "7.1.0",
"depcheck": "1.4.3",
"kill-port": "1.6.1",
"lint-staged": "12.3.7",
"mocha": "9.2.2",
"no-master-commits": "1.1.1",
"pre-commit": "1.2.2",
"prettier": "2.7.1",
"react-dnd": "16.0.0",
"react-router-dom": "5.3.0",
"rimraf": "^3.0.2",
"stylelint": "^14.6.1",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-scss": "^4.2.0",
"supertest": "6.2.2",
"trace-unhandled": "2.0.1",
"ttab": "^0.7.3"
},
"dependencies": {
"@feathersjs/commons": "5.0.0-pre.10",
"@feathersjs/errors": "5.0.0-pre.10",
"@feathersjs/feathers": "5.0.0-pre.10",
"cli": "1.0.1",
"dotenv": "14.3.2",
"lerna": "4.0.0",
"pino": "^7.10.0",
"pino-pretty": "^7.6.1",
"postcss": "^8.4.16",
"qrcode.react": "^3.1.0",
"react-json-view": "^1.21.3",
"ts-node": "10.8.2",
"typescript": "4.7.4"
}
}