summaryrefslogtreecommitdiff
path: root/package.json
blob: c7a56b097a83267a0a307ae223b6ed8567fb2432 (plain) (blame)
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
{
    "name": "tmw-api",
    "version": "2.1.0",
    "description": "TMW RESTful API",
    "author": "The Mana World",
    "license": "CC0-1.0",
    "config": {
        "port": 8080,
        "timezone": "UTC",
        "recaptcha": {
            "secret": "recaptcha secret key"
        },
        "tmwa": {
            "name": "The Mana World Legacy Server",
            "url": "tmwa://server.themanaworld.org:6901",
            "root": "/mnt/tmwAthena/tmwa-server-data",
            "home": "/home/tmw"
        },
        "mailer": {
            "from": "The Mana World <noreply@themanaworld.org>"
        },
        "logger": {
            "webhook": ""
        }
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/themanaworld/api.git"
    },
    "bugs": {
        "url": "https://github.com/themanaworld/api/issues"
    },
    "main": "src/api.js",
    "private": true,
    "scripts": {
        "test": "node_modules/nsp/bin/nsp check",
        "start": "node ."
    },
    "dependencies": {
        "express": "^4.17.0",
        "nodemailer": "^6.2.1",
        "random-number-csprng": "^1.0.2",
        "ripgrep-bin": "^11.0.1",
        "uuid": "^3.3.2"
    },
    "devDependencies": {}
}