package.json 2.3 KB
Newer Older
1 2
{
    "name": "@visualdl/server",
P
Peter Pan 已提交
3
    "version": "2.0.0-beta.50",
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
        "dev": "cross-env NODE_ENV=development nodemon --watch index.ts --watch webpack.config.js --exec \"ts-node index.ts\"",
P
Peter Pan 已提交
27
        "build": "ts-node --script-mode build.ts",
28
        "build:webpack": "webpack",
29
        "start": "pm2-runtime ecosystem.config.js",
30
        "test": "echo \"Error: no test specified\" && exit 0; #"
31 32 33 34 35 36 37 38 39
    },
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "files": [
        "dist",
        "ecosystem.config.js",
        "ecosystem.config.d.ts"
    ],
    "dependencies": {
P
Peter Pan 已提交
40 41 42
        "@visualdl/core": "2.0.0-beta.50",
        "@visualdl/demo": "2.0.0-beta.50",
        "@visualdl/i18n": "2.0.0-beta.50",
43
        "express": "4.17.1",
P
Peter Pan 已提交
44
        "http-proxy-middleware": "1.0.5",
P
Peter Pan 已提交
45
        "next": "9.4.4",
46
        "pm2": "4.4.0"
47 48
    },
    "devDependencies": {
P
Peter Pan 已提交
49
        "@types/express": "4.17.7",
P
Peter Pan 已提交
50
        "@types/node": "14.0.27",
P
Peter Pan 已提交
51
        "@types/shelljs": "0.8.8",
P
Peter Pan 已提交
52
        "@types/webpack": "4.41.21",
P
Peter Pan 已提交
53
        "@types/webpack-dev-middleware": "3.7.1",
P
Peter Pan 已提交
54
        "@visualdl/mock": "2.0.0-beta.50",
55
        "cross-env": "7.0.2",
P
Peter Pan 已提交
56
        "nodemon": "2.0.4",
57
        "shelljs": "0.8.4",
P
Peter Pan 已提交
58
        "ts-loader": "8.0.2",
P
Peter Pan 已提交
59
        "ts-node": "8.10.2",
P
Peter Pan 已提交
60
        "typescript": "3.9.7",
61
        "webpack": "4.43.0",
P
Peter Pan 已提交
62
        "webpack-cli": "3.3.12",
63
        "webpack-dev-middleware": "3.7.2"
64 65 66 67 68 69 70 71 72 73 74 75
    },
    "engines": {
        "node": ">=10",
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
P
Peter Pan 已提交
76
    }
77
}