package.json 1.8 KB
Newer Older
1 2
{
    "name": "@visualdl/server",
P
Peter Pan 已提交
3
    "version": "2.0.0",
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 40
        "@visualdl/core": "2.0.0",
        "@visualdl/demo": "2.0.0",
41 42
        "dotenv": "8.2.0",
        "enhanced-resolve": "4.3.0",
43
        "express": "4.17.1",
P
Peter Pan 已提交
44
        "http-proxy-middleware": "1.0.5",
45
        "pm2": "4.4.1"
46 47
    },
    "devDependencies": {
48 49
        "@types/enhanced-resolve": "3.0.6",
        "@types/express": "4.17.8",
50
        "@types/node": "14.6.4",
P
Peter Pan 已提交
51
        "@visualdl/mock": "2.0.0",
52
        "cross-env": "7.0.2",
P
Peter Pan 已提交
53
        "nodemon": "2.0.4",
54 55
        "ts-node": "9.0.0",
        "typescript": "4.0.2"
56 57
    },
    "engines": {
58
        "node": ">=12",
59 60 61 62
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
P
Peter Pan 已提交
63
    }
64
}