This repository was archived by the owner on Apr 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.38 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.38 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
{
"type": "module",
"name": "dbd-server",
"version": "1.7.4",
"description": "",
"main": "server.js",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"eslint": "^7.19.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.5",
"hjson": "^3.2.2",
"https": "^1.0.0",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"nunjucks": "^3.2.2",
"typescript": "3.9.7"
},
"devDependencies": {
"@types/express": "4.17.7",
"@types/node": "14.0.27",
"@types/node-fetch": "2.5.8",
"@types/express-serve-static-core": "4.17.7",
"mocha": "^8.3.0",
"request": "^2.88.2",
"typedoc": "^0.20.27"
},
"scripts": {
"prestart": "npm-run-all --serial build",
"start": "node build/server.js",
"prestart_unix": "npm run prestart",
"start_unix": "sudo node build/server.js",
"build": "tsc",
"lint": "eslint -c .eslintrc.cjs --ext .ts src/",
"test": "mocha test/test.js",
"debug_linux": "DEBUG=express:* npm start 2>&1 | tee debug.log",
"debug_win": "set DEBUG=express:* && npm start > debug.log 2>&1",
"gen-docs": "npx typedoc --name \"DbD Dev Server\" --includeVersion --readme none src/"
},
"author": "Preston Petrie",
"license": "GPL-3.0-only"
}