package.json 3.1 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
    },
    "scripts": {
        "dev": "next",
28 29
        "build": "echo 'This package does not need to build. Please use @visualdl/server or @visualdl/serverless to build from source.'; echo 'If you want to test build function, please run `build:next` instead.'",
        "build:next": "next build",
30 31 32 33 34
        "export": "next export",
        "start": "next start",
        "test": "echo \"Error: no test specified\" && exit 0"
    },
    "dependencies": {
35 36
        "@visualdl/i18n": "2.0.0-beta.43",
        "@visualdl/wasm": "2.0.0-beta.43",
37
        "bignumber.js": "9.0.0",
P
Peter Pan 已提交
38
        "echarts": "4.8.0",
39
        "echarts-gl": "1.1.1",
P
Peter Pan 已提交
40
        "eventemitter3": "4.0.4",
41
        "file-saver": "2.0.2",
42 43
        "isomorphic-unfetch": "3.0.0",
        "lodash": "4.17.15",
44
        "mime-types": "2.1.27",
P
Peter Pan 已提交
45 46 47
        "moment": "2.26.0",
        "nanoid": "3.1.9",
        "next": "9.4.4",
48
        "nprogress": "0.2.0",
P
Peter Pan 已提交
49
        "polished": "3.6.4",
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
        "save-svg-as-png": "1.4.17",
P
Peter Pan 已提交
60 61
        "styled-components": "5.1.1",
        "swr": "0.2.2"
62 63
    },
    "devDependencies": {
P
Peter Pan 已提交
64 65
        "@babel/core": "7.10.2",
        "@types/echarts": "4.6.1",
66
        "@types/file-saver": "2.0.1",
P
Peter Pan 已提交
67
        "@types/lodash": "4.14.155",
68
        "@types/mime-types": "2.1.0",
P
Peter Pan 已提交
69
        "@types/node": "14.0.10",
70
        "@types/nprogress": "0.2.0",
P
Peter Pan 已提交
71 72
        "@types/react": "16.9.35",
        "@types/react-dom": "16.9.8",
73
        "@types/styled-components": "5.1.0",
74
        "@visualdl/mock": "2.0.0-beta.43",
75 76 77
        "babel-plugin-emotion": "10.0.33",
        "babel-plugin-styled-components": "1.10.7",
        "babel-plugin-typescript-to-proptypes": "1.3.2",
78
        "core-js": "3.6.5",
79
        "cross-env": "7.0.2",
80 81
        "css-loader": "3.5.3",
        "ora": "4.0.4",
P
Peter Pan 已提交
82
        "typescript": "3.9.3",
83
        "worker-plugin": "4.0.3"
84 85 86 87 88 89 90 91 92 93 94 95
    },
    "engines": {
        "node": ">=10",
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
P
Peter Pan 已提交
96
    }
97
}