-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 816 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 816 Bytes
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
{
"name": "d20server",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "node ./core/server/app.js",
"generator": "node ./helper/generator.js",
"converter": "node ./helper/converter.js",
"scripting": "node ./core/common/scripting/scripting.js",
"build": "node ./helper/build.js",
"test": "mocha --recursive --require ./test/init.mjs"
},
"dependencies": {
"@rmanibus/nedb": "^1.9.0-beta.1",
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-turn": "0.0.6",
"sharp": "^0.30.4",
"ws": "^7.4.5",
"yargs": "^17.3.0"
},
"devDependencies": {
"clean-css": "^5.2.4",
"mocha": "^9.2.2",
"terser": "^5.10.0"
}
}