package.json 1.6 KB
Newer Older
1 2
{
    "name": "@visualdl/mock",
P
Peter Pan 已提交
3
    "version": "2.1.5",
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/mock"
24 25
    },
    "main": "dist/index.js",
26
    "module": "dist/index.js",
27 28 29 30 31
    "types": "dist/index.d.ts",
    "files": [
        "dist"
    ],
    "scripts": {
P
Peter Pan 已提交
32
        "build": "rimraf dist && tsc && cpy assets dist/ --parents",
33 34
        "dev": "ts-node index.ts",
        "test": "echo \"Error: no test specified\" && exit 0"
35 36
    },
    "dependencies": {
37
        "express": "4.17.1",
P
Peter Pan 已提交
38
        "faker": "5.2.0",
P
Peter Pan 已提交
39
        "isomorphic-unfetch": "3.1.0",
40
        "mime-types": "2.1.28"
41 42
    },
    "devDependencies": {
P
Peter Pan 已提交
43
        "@types/express": "4.17.11",
P
Peter Pan 已提交
44
        "@types/faker": "5.1.5",
P
Peter Pan 已提交
45
        "@types/node": "14.14.22",
P
Peter Pan 已提交
46 47
        "cpy-cli": "3.1.1",
        "rimraf": "3.0.2",
P
Peter Pan 已提交
48 49
        "ts-node": "9.1.1",
        "typescript": "4.0.5"
50 51
    },
    "engines": {
52
        "node": ">=12",
53 54 55 56
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
P
Peter Pan 已提交
57
    }
58
}