-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.45 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
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
{
"name": "webgme-engine",
"version": "2.32.1",
"description": "WebGME server and Client API without a GUI",
"main": "index.js",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"start": "node ./src/bin/start_server.js",
"prepublishOnly": "node ./utils/prepublish.js",
"postinstall": "node ./utils/postinstall.js",
"test": "node ./node_modules/mocha/bin/mocha --exit --recursive test",
"test:deps": "docker compose -f docker-compose.test.yml up -d --wait",
"test:deps:down": "docker compose -f docker-compose.test.yml down -v",
"test:local": "bash -lc 'set -euo pipefail; npm run test:deps; trap \"npm run test:deps:down\" EXIT; npm run lint && npm test'",
"test:local:ci": "bash -lc 'set -euo pipefail; npm run test:deps; trap \"npm run test:deps:down\" EXIT; npm run lint && npm run test_ci'",
"test_ci": "node ./node_modules/mocha/bin/mocha --exit -R dot --timeout 10000 --recursive test",
"test_cover": "nyc --reporter=html --reporter=text node ./node_modules/mocha/bin/mocha --exit --recursive test",
"docs": "./node_modules/.bin/jsdoc -c jsdoc_conf.json",
"apply": "node ./src/bin/apply.js",
"diff": "node ./src/bin/diff.js",
"export": "node ./src/bin/export.js",
"import": "node ./src/bin/import.js",
"merge": "node ./src/bin/merge.js",
"plugin": "node ./src/bin/run_plugin.js",
"pluginHook": "node ./src/bin/plugin_hook.js",
"users": "node ./src/bin/usermanager.js",
"clean_up": "node ./src/bin/clean_up.js",
"stats": "node ./src/bin/storage_stats.js",
"lint": "node ./node_modules/eslint/bin/eslint.js .",
"lint:fix": "node ./node_modules/eslint/bin/eslint.js . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webgme/webgme-engine.git"
},
"keywords": [
"webgme",
"gme",
"metamodeling",
"cooperative",
"modeling",
"domain"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/webgme/webgme-engine/issues"
},
"homepage": "https://github.com/webgme/webgme-engine#README.md",
"dependencies": {
"@azure/msal-node": "^5.1.5",
"@redocly/cli": "^2.30.3",
"@socket.io/redis-adapter": "^8.3.0",
"adm-zip": "^0.6.0",
"agentkeepalive": "^4.5.0",
"archiver": "^7",
"aws-sdk": "^2.1693.0",
"bcryptjs": "^3",
"body-parser": "^2",
"browserify": "^17.0.0",
"buffer-equal-constant-time": "^1.0.1",
"chance": "^1.1.11",
"commander": "^14.0.3",
"compression": "^1.7.4",
"content-disposition": "^2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.4",
"ejs": "^6",
"express": "^4.18.2",
"import-fresh": "^3.3.0",
"jose": "^6.2.3",
"jsdoc": "^4.0.2",
"jsonwebtoken": "^9.0.2",
"method-override": "^3.0.0",
"mime": "^4.1.0",
"mongo-uri": "^0.1.2",
"mongodb": "^7",
"ncp": "^2.0.0",
"nodemailer": "^9",
"pug": "^3.0.0",
"q": "^1.5.1",
"redis": "^5.12.1",
"requirejs": "^2.3.6",
"requirejs-text": "^2.0.16",
"socket.io": "^4",
"socket.io-client": "^4",
"superagent": "^10.3.0",
"underscore": "^1.13.6",
"webapi-parser": "^0.5.0",
"webgme-ot": "0.0.16",
"webgme-rust": "0.1.0",
"winston": "^2.4.7"
},
"devDependencies": {
"chai": "^6",
"eslint": "^8.47.0",
"esprima": "^4.0.0",
"mocha": "^11",
"msgpack-js": "^0.3.0",
"pkginfo": "^0.4.1",
"rimraf": "^6"
},
"overrides": {
"serialize-javascript": "^7.0.5",
"qs": "^6.16.0"
}
}