package.json 3.6 KB
Newer Older
1 2
{
    "name": "@visualdl/core",
P
Peter Pan 已提交
3
    "version": "2.0.0-beta.49",
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
        "export": "next export",
        "start": "next start",
32 33
        "test": "NODE_OPTIONS=\"--max-old-space-size=4096\" jest",
        "test:coverage": "NODE_OPTIONS=\"--max-old-space-size=4096\" jest --coverage"
34 35
    },
    "dependencies": {
P
Peter Pan 已提交
36 37 38 39
        "@tippyjs/react": "4.1.0",
        "@visualdl/i18n": "2.0.0-beta.49",
        "@visualdl/netron": "2.0.0-beta.49",
        "@visualdl/wasm": "2.0.0-beta.49",
40
        "bignumber.js": "9.0.0",
P
Peter Pan 已提交
41
        "d3-format": "1.4.4",
P
Peter Pan 已提交
42
        "echarts": "4.8.0",
43
        "echarts-gl": "1.1.1",
P
Peter Pan 已提交
44
        "eventemitter3": "4.0.4",
45
        "file-saver": "2.0.2",
46
        "isomorphic-unfetch": "3.0.0",
P
Peter Pan 已提交
47
        "lodash": "4.17.19",
48
        "mime-types": "2.1.27",
P
Peter Pan 已提交
49
        "moment": "2.27.0",
P
Peter Pan 已提交
50
        "next": "9.4.4",
51
        "nprogress": "0.2.0",
P
Peter Pan 已提交
52
        "polished": "3.6.5",
53
        "prop-types": "15.7.2",
54
        "query-string": "6.13.1",
55 56 57 58
        "react": "16.13.1",
        "react-dom": "16.13.1",
        "react-input-range": "1.3.0",
        "react-is": "16.13.1",
P
Peter Pan 已提交
59
        "react-spinners": "0.9.0",
P
Peter Pan 已提交
60
        "react-toastify": "6.0.8",
61
        "save-svg-as-png": "1.4.17",
P
Peter Pan 已提交
62
        "styled-components": "5.1.1",
P
Peter Pan 已提交
63
        "swr": "0.2.3",
P
Peter Pan 已提交
64
        "tippy.js": "6.2.5"
65 66
    },
    "devDependencies": {
P
Peter Pan 已提交
67
        "@babel/core": "7.10.5",
P
Peter Pan 已提交
68
        "@types/d3-format": "1.3.1",
P
Peter Pan 已提交
69
        "@types/echarts": "4.6.3",
70 71
        "@types/enzyme": "3.10.5",
        "@types/enzyme-adapter-react-16": "1.0.6",
72
        "@types/file-saver": "2.0.1",
P
Peter Pan 已提交
73
        "@types/jest": "26.0.4",
P
Peter Pan 已提交
74
        "@types/lodash": "4.14.157",
75
        "@types/mime-types": "2.1.0",
P
Peter Pan 已提交
76
        "@types/node": "14.0.23",
77
        "@types/nprogress": "0.2.0",
P
Peter Pan 已提交
78
        "@types/react": "16.9.43",
P
Peter Pan 已提交
79
        "@types/react-dom": "16.9.8",
P
Peter Pan 已提交
80 81
        "@types/styled-components": "5.1.1",
        "@visualdl/mock": "2.0.0-beta.49",
82 83 84
        "babel-plugin-emotion": "10.0.33",
        "babel-plugin-styled-components": "1.10.7",
        "babel-plugin-typescript-to-proptypes": "1.3.2",
85
        "copy-webpack-plugin": "6.0.3",
86
        "core-js": "3.6.5",
87
        "cross-env": "7.0.2",
P
Peter Pan 已提交
88
        "css-loader": "3.6.0",
P
Peter Pan 已提交
89
        "enhanced-resolve": "4.3.0",
90 91 92 93
        "enzyme": "3.11.0",
        "enzyme-adapter-react-16": "1.15.2",
        "enzyme-to-json": "3.5.0",
        "jest": "26.1.0",
94
        "ora": "4.0.4",
P
Peter Pan 已提交
95
        "ts-jest": "26.1.2",
96
        "typescript": "3.9.6",
97
        "worker-plugin": "4.0.3"
98 99 100 101 102 103 104 105 106 107 108 109
    },
    "engines": {
        "node": ">=10",
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
P
Peter Pan 已提交
110
    }
111
}