package.json 3.2 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 38 39 40
        "bignumber.js": "9.0.0",
        "dagre-d3": "0.6.4",
        "echarts": "4.7.0",
        "echarts-gl": "1.1.1",
41 42
        "eventemitter3": "4.0.0",
        "file-saver": "2.0.2",
43 44
        "isomorphic-unfetch": "3.0.0",
        "lodash": "4.17.15",
45 46 47 48
        "mime-types": "2.1.27",
        "moment": "2.25.3",
        "nanoid": "3.1.5",
        "next": "9.3.6",
49
        "nprogress": "0.2.0",
50
        "polished": "3.6.2",
51
        "prop-types": "15.7.2",
52
        "query-string": "6.12.1",
53 54 55 56 57
        "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",
58 59
        "react-spinners": "0.8.3",
        "react-tooltip": "4.2.6",
60 61 62 63 64
        "save-svg-as-png": "1.4.17",
        "styled-components": "5.1.0",
        "swr": "0.2.0"
    },
    "devDependencies": {
65
        "@babel/core": "7.9.6",
66 67
        "@types/d3": "5.7.2",
        "@types/dagre-d3": "0.4.39",
68 69 70 71 72
        "@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",
73
        "@types/nprogress": "0.2.0",
74
        "@types/react": "16.9.34",
75 76
        "@types/react-dom": "16.9.7",
        "@types/styled-components": "5.1.0",
77
        "@visualdl/mock": "2.0.0-beta.43",
78 79 80
        "babel-plugin-emotion": "10.0.33",
        "babel-plugin-styled-components": "1.10.7",
        "babel-plugin-typescript-to-proptypes": "1.3.2",
81
        "core-js": "3.6.5",
82
        "cross-env": "7.0.2",
83 84
        "css-loader": "3.5.3",
        "ora": "4.0.4",
85
        "typescript": "3.8.3",
86
        "worker-plugin": "4.0.3"
87 88 89 90 91 92 93 94 95 96 97 98
    },
    "engines": {
        "node": ">=10",
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
P
Peter Pan 已提交
99
    }
100
}