forked from overte-org/overte-metaverse
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·85 lines (85 loc) · 2.64 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
{
"name": "iamus-metaverse-server",
"version": "2.4.10",
"private": true,
"description": "metaverse-server for Overte",
"author": "Robert Adams <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/overte-org/overte-metaverse"
},
"bugs": {
"url": "https://github.com/overte-org/overte-metaverse/issues"
},
"homepage": "https://github.com/overte-org/overte-metaverse",
"keywords": [
"Overte",
"virtual world"
],
"license": "Apache-2.0",
"main": "dist/start.js",
"_moduleAliases": {
"@Entities": "dist/Entities",
"@Monitoring": "dist/Monitoring",
"@Route-Tools": "dist/route-tools",
"@Tools": "dist/Tools",
"@Base": "dist"
},
"scripts": {
"install-packages": "npm install",
"build": "npm-run-all -s \"clean-dist\" \"copy-static\" \"build:iamus\"",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"build:iamus": "tsc",
"prestart": "npm run build",
"start": "node dist/start.js",
"clean-dist": "rimraf ./dist",
"copy-static": "copyfiles ./src/static/* ./dist/static/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">= 18.17.0",
"npm": ">= 9.8.1"
},
"dependencies": {
"cors": "^2.8.5",
"debug": "~2.6.9",
"deepmerge": "^4.2.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fs-extra": "^9.1.0",
"glob": "^7.1.7",
"http-errors": "~1.6.3",
"loglevel": "^1.7.1",
"module-alias": "^2.2.3",
"mongodb": "^5.7.0",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.6.0",
"unique-names-generator": "^4.5.0",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.11",
"@types/glob": "^7.1.3",
"@types/http-errors": "^1.8.0",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.5",
"@types/node": "^14.14.44",
"@types/nodemailer": "^6.4.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"copyfiles": "^2.4.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsdoc": "^46.4.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"rimraf": "^5.0.1",
"tslint": "^6.1.3",
"typescript": "^5.1.6"
}
}