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": {
P
Peter Pan 已提交
35
        "@tippyjs/react": "4.0.5",
36
        "@visualdl/i18n": "2.0.0-beta.43",
37
        "@visualdl/netron": "2.0.0-beta.43",
38
        "@visualdl/wasm": "2.0.0-beta.43",
39
        "bignumber.js": "9.0.0",
P
Peter Pan 已提交
40
        "d3-format": "1.4.4",
P
Peter Pan 已提交
41
        "echarts": "4.8.0",
42
        "echarts-gl": "1.1.1",
P
Peter Pan 已提交
43
        "eventemitter3": "4.0.4",
44
        "file-saver": "2.0.2",
45 46
        "isomorphic-unfetch": "3.0.0",
        "lodash": "4.17.15",
47
        "mime-types": "2.1.27",
P
Peter Pan 已提交
48
        "moment": "2.27.0",
P
Peter Pan 已提交
49
        "next": "9.4.4",
50
        "nprogress": "0.2.0",
P
Peter Pan 已提交
51
        "polished": "3.6.5",
52
        "prop-types": "15.7.2",
53
        "query-string": "6.13.1",
54 55 56 57
        "react": "16.13.1",
        "react-dom": "16.13.1",
        "react-input-range": "1.3.0",
        "react-is": "16.13.1",
P
Peter Pan 已提交
58 59
        "react-spinners": "0.9.0",
        "react-toastify": "6.0.6",
60
        "save-svg-as-png": "1.4.17",
P
Peter Pan 已提交
61
        "styled-components": "5.1.1",
P
Peter Pan 已提交
62
        "swr": "0.2.3",
63
        "tippy.js": "6.2.3"
64 65
    },
    "devDependencies": {
P
Peter Pan 已提交
66
        "@babel/core": "7.10.3",
P
Peter Pan 已提交
67
        "@types/d3-format": "1.3.1",
P
Peter Pan 已提交
68
        "@types/echarts": "4.6.3",
69
        "@types/file-saver": "2.0.1",
P
Peter Pan 已提交
70
        "@types/lodash": "4.14.157",
71
        "@types/mime-types": "2.1.0",
P
Peter Pan 已提交
72
        "@types/node": "14.0.14",
73
        "@types/nprogress": "0.2.0",
P
Peter Pan 已提交
74
        "@types/react": "16.9.41",
P
Peter Pan 已提交
75
        "@types/react-dom": "16.9.8",
76
        "@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
        "copy-webpack-plugin": "6.0.2",
82
        "core-js": "3.6.5",
83
        "cross-env": "7.0.2",
P
Peter Pan 已提交
84 85
        "css-loader": "3.6.0",
        "enhanced-resolve": "4.2.0",
86
        "ora": "4.0.4",
87
        "typescript": "3.9.5",
88
        "worker-plugin": "4.0.3"
89 90 91 92 93 94 95 96 97 98 99 100
    },
    "engines": {
        "node": ">=10",
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
P
Peter Pan 已提交
101
    }
102
}