package.json 1.9 KB
Newer Older
1 2
{
    "name": "@visualdl/server",
P
Peter Pan 已提交
3
    "version": "2.1.0-1",
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
    "description": "A platform to visualize the deep learning process and result.",
    "keywords": [
        "visualdl",
        "paddlepaddle",
        "visualization",
        "deep learning"
    ],
    "homepage": "https://github.com/PaddlePaddle/VisualDL",
    "bugs": {
        "url": "https://github.com/PaddlePaddle/VisualDL/issues"
    },
    "license": "Apache-2.0",
    "author": "PeterPanZH <littlepanzh@gmail.com> (https://github.com/PeterPanZH)",
    "contributors": [
        "Niandalu <littlepanzh@gmail.com> (https://github.com/Niandalu)"
    ],
    "repository": {
        "type": "git",
        "url": "https://github.com/PaddlePaddle/VisualDL.git",
P
Peter Pan 已提交
23
        "directory": "frontend/packages/server"
24 25
    },
    "scripts": {
26 27
        "build": "tsc",
        "dev": "cross-env NODE_ENV=development nodemon --watch index.ts --exec \"ts-node index.ts\"",
28
        "start": "pm2-runtime ecosystem.config.js",
29
        "test": "echo \"Error: no test specified\" && exit 0"
30 31 32 33 34 35 36 37 38
    },
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "files": [
        "dist",
        "ecosystem.config.js",
        "ecosystem.config.d.ts"
    ],
    "dependencies": {
P
Peter Pan 已提交
39
        "@visualdl/core": "2.1.0-1",
40
        "dotenv": "8.2.0",
P
Peter Pan 已提交
41
        "enhanced-resolve": "5.4.1",
42
        "express": "4.17.1",
P
Peter Pan 已提交
43
        "http-proxy-middleware": "1.0.6",
P
Peter Pan 已提交
44
        "pm2": "4.5.1"
45 46
    },
    "devDependencies": {
47
        "@types/enhanced-resolve": "3.0.6",
P
Peter Pan 已提交
48
        "@types/express": "4.17.9",
P
Peter Pan 已提交
49 50
        "@types/node": "14.14.16",
        "@visualdl/mock": "2.1.0-1",
P
Peter Pan 已提交
51 52 53 54
        "cross-env": "7.0.3",
        "nodemon": "2.0.6",
        "ts-node": "9.1.1",
        "typescript": "4.0.5"
55
    },
P
Peter Pan 已提交
56
    "optionalDependencies": {
P
Peter Pan 已提交
57
        "@visualdl/demo": "2.1.0-1"
P
Peter Pan 已提交
58
    },
59
    "engines": {
60
        "node": ">=12",
61 62 63 64
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
P
Peter Pan 已提交
65
    }
66
}