-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
104 lines (104 loc) · 3.06 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
{
"name": "webgme-engine",
"version": "2.30.0-beta",
"description": "WebGME server and Client API without a GUI",
"main": "index.js",
"engines": {
"node": ">=14.0.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_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 ."
},
"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": "^2.9.2",
"adm-zip": "0.5.10",
"agentkeepalive": "4.5.0",
"archiver": "^6.0.1",
"aws-sdk": "^2.1443.0",
"azure-ad-verify-token-commonjs": "^2.0.2",
"bcryptjs": "2.4.3",
"body-parser": "^1.20.2",
"browserify": "17.0.0",
"buffer-equal-constant-time": "1.0.1",
"chance": "1.1.11",
"commander": "2.15.1",
"compression": "1.7.4",
"connect-multiparty": "2.2.0",
"content-disposition": "0.5.4",
"cookie-parser": "1.4.6",
"cors": "^2.8.5",
"debug": "4.3.4",
"ejs": "^3.1.9",
"express": "^4.18.2",
"import-fresh": "^3.3.0",
"jsdoc": "^4.0.2",
"jsonwebtoken": "^9.0.2",
"method-override": "^3.0.0",
"mime": "^3.0.0",
"mongo-uri": "0.1.2",
"mongodb": "^3.7.3",
"ncp": "2.0.0",
"nodemailer": "^6.4.6",
"pug": "^3.0.0",
"q": "1.5.1",
"raml2html": "^7.8.0",
"redis": "^3.1.2",
"requirejs": "2.3.6",
"requirejs-text": "2.0.16",
"socket.io": "2.5.0",
"socket.io-client": "2.5.0",
"socket.io-redis": "^5.4.0",
"superagent": "3.8.3",
"underscore": "1.13.6",
"webgme-ot": "0.0.16",
"webgme-rust": "0.1.0",
"winston": "^2.4.7"
},
"devDependencies": {
"chai": "^4.3.8",
"eslint": "^8.47.0",
"esprima": "^4.0.0",
"http-proxy": "^1.18.1",
"mocha": "^10.4.0",
"msgpack-js": "^0.3.0",
"nyc": "^15.1.0",
"pkginfo": "^0.4.1",
"rimraf": "^5.0.7",
"ssl-root-cas": "^1.3.1",
"webgme-executor-worker": "^3.1.1"
}
}