package.json 3.4 KB
Newer Older
1 2
{
    "name": "@visualdl/core",
P
Peter Pan 已提交
3
    "version": "2.0.0",
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
    "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 已提交
23
        "directory": "frontend/packages/core"
24 25
    },
    "scripts": {
26 27 28 29
        "dev": "snowpack dev",
        "build": "snowpack build",
        "start": "yarn dev --reload",
        "test": "jest"
30
    },
31 32 33 34
    "main": "dist/index.html",
    "files": [
        "dist"
    ],
35
    "dependencies": {
P
Peter Pan 已提交
36
        "@tippyjs/react": "4.1.0",
P
Peter Pan 已提交
37 38
        "@visualdl/netron": "2.0.0",
        "@visualdl/wasm": "2.0.0",
39
        "bignumber.js": "9.0.0",
40 41
        "d3-format": "2.0.0",
        "echarts": "4.9.0",
42
        "echarts-gl": "1.1.1",
43
        "eventemitter3": "4.0.7",
44
        "file-saver": "2.0.2",
45 46 47 48
        "i18next": "19.7.0",
        "i18next-browser-languagedetector": "6.0.1",
        "i18next-fetch-backend": "3.0.0",
        "lodash": "4.17.20",
49
        "mime-types": "2.1.27",
P
Peter Pan 已提交
50
        "moment": "2.27.0",
51
        "nprogress": "0.2.0",
52
        "polished": "3.6.6",
53
        "query-string": "6.13.1",
54 55
        "react": "16.13.1",
        "react-dom": "16.13.1",
56 57
        "react-helmet": "6.1.0",
        "react-i18next": "11.7.2",
58 59
        "react-input-range": "1.3.0",
        "react-is": "16.13.1",
P
Peter Pan 已提交
60
        "react-rangeslider": "2.2.0",
61
        "react-router-dom": "5.2.0",
P
Peter Pan 已提交
62
        "react-spinners": "0.9.0",
P
Peter Pan 已提交
63
        "react-toastify": "6.0.8",
P
Peter Pan 已提交
64
        "styled-components": "5.1.1",
P
Peter Pan 已提交
65 66
        "swr": "0.3.0",
        "tippy.js": "6.2.6"
67 68
    },
    "devDependencies": {
69 70 71 72 73 74 75 76
        "@babel/core": "7.11.5",
        "@babel/preset-react": "7.10.4",
        "@snowpack/app-scripts-react": "1.10.0",
        "@snowpack/plugin-dotenv": "2.0.1",
        "@snowpack/plugin-run-script": "2.1.1",
        "@svgr/core": "5.4.0",
        "@testing-library/jest-dom": "5.11.4",
        "@testing-library/react": "10.4.9",
P
Peter Pan 已提交
77
        "@types/d3-format": "1.3.1",
78
        "@types/echarts": "4.6.5",
79
        "@types/file-saver": "2.0.1",
80 81 82
        "@types/jest": "26.0.13",
        "@types/loadable__component": "5.13.0",
        "@types/lodash": "4.14.161",
83
        "@types/mime-types": "2.1.0",
84
        "@types/nprogress": "0.2.0",
85
        "@types/react": "16.9.49",
P
Peter Pan 已提交
86
        "@types/react-dom": "16.9.8",
87
        "@types/react-helmet": "6.1.0",
P
Peter Pan 已提交
88
        "@types/react-rangeslider": "2.2.3",
89 90 91
        "@types/react-router-dom": "5.1.5",
        "@types/snowpack-env": "2.3.0",
        "@types/styled-components": "5.1.3",
P
Peter Pan 已提交
92
        "@visualdl/mock": "2.0.0",
P
Peter Pan 已提交
93
        "babel-plugin-styled-components": "1.11.1",
P
Peter Pan 已提交
94
        "enhanced-resolve": "4.3.0",
95 96 97 98 99 100
        "express": "4.17.1",
        "fs-extra": "9.0.1",
        "jest": "26.4.2",
        "snowpack": "2.10.1",
        "typescript": "4.0.2",
        "yargs": "15.4.1"
101 102
    },
    "engines": {
103
        "node": ">=12",
104 105 106 107
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
P
Peter Pan 已提交
108
    }
109
}