package.json 2.9 KB
Newer Older
1 2
{
    "name": "@visualdl/core",
3
    "version": "2.0.0-beta.43",
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
    "title": "VisualDL",
    "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 已提交
24
        "directory": "frontend/packages/core"
25 26 27 28 29 30 31 32 33
    },
    "scripts": {
        "dev": "next",
        "build": "next build",
        "export": "next export",
        "start": "next start",
        "test": "echo \"Error: no test specified\" && exit 0"
    },
    "dependencies": {
34 35
        "@visualdl/i18n": "2.0.0-beta.43",
        "@visualdl/wasm": "2.0.0-beta.43",
36 37 38 39
        "bignumber.js": "9.0.0",
        "dagre-d3": "0.6.4",
        "echarts": "4.7.0",
        "echarts-gl": "1.1.1",
40 41
        "eventemitter3": "4.0.0",
        "file-saver": "2.0.2",
42 43
        "isomorphic-unfetch": "3.0.0",
        "lodash": "4.17.15",
44 45 46 47
        "mime-types": "2.1.27",
        "moment": "2.25.3",
        "nanoid": "3.1.5",
        "next": "9.3.6",
48
        "nprogress": "0.2.0",
49
        "polished": "3.6.2",
50
        "prop-types": "15.7.2",
51
        "query-string": "6.12.1",
52 53 54 55 56
        "react": "16.13.1",
        "react-dom": "16.13.1",
        "react-hooks-worker": "0.9.0",
        "react-input-range": "1.3.0",
        "react-is": "16.13.1",
57 58
        "react-spinners": "0.8.3",
        "react-tooltip": "4.2.6",
59 60 61 62 63
        "save-svg-as-png": "1.4.17",
        "styled-components": "5.1.0",
        "swr": "0.2.0"
    },
    "devDependencies": {
64
        "@babel/core": "7.9.6",
65 66
        "@types/d3": "5.7.2",
        "@types/dagre-d3": "0.4.39",
67 68 69 70 71
        "@types/echarts": "4.6.0",
        "@types/file-saver": "2.0.1",
        "@types/lodash": "4.14.150",
        "@types/mime-types": "2.1.0",
        "@types/node": "13.13.5",
72
        "@types/nprogress": "0.2.0",
73
        "@types/react": "16.9.34",
74 75
        "@types/react-dom": "16.9.7",
        "@types/styled-components": "5.1.0",
76
        "@visualdl/mock": "2.0.0-beta.43",
77 78 79
        "babel-plugin-emotion": "10.0.33",
        "babel-plugin-styled-components": "1.10.7",
        "babel-plugin-typescript-to-proptypes": "1.3.2",
80
        "core-js": "3.6.5",
81
        "cross-env": "7.0.2",
82 83
        "css-loader": "3.5.3",
        "ora": "4.0.4",
84
        "typescript": "3.8.3",
85
        "worker-plugin": "4.0.3"
86 87 88 89 90 91 92 93 94 95 96 97
    },
    "engines": {
        "node": ">=10",
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
P
Peter Pan 已提交
98
    }
99
}