package.json 3.9 KB
Newer Older
1 2
{
    "name": "@visualdl/core",
3
    "version": "2.0.9",
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
        "dev": "snowpack dev",
27
        "build": "snowpack build && node builder/post-build.js",
28
        "start": "yarn dev --reload",
29
        "test": "jest --passWithNoTests"
30
    },
31 32
    "main": "dist/index.html",
    "files": [
33 34
        "dist",
        "builder/environment.js"
35
    ],
36
    "dependencies": {
P
Peter Pan 已提交
37
        "@tippyjs/react": "4.1.0",
38 39
        "@visualdl/netron": "2.0.9",
        "@visualdl/wasm": "2.0.9",
40
        "bignumber.js": "9.0.0",
41 42
        "d3-format": "2.0.0",
        "echarts": "4.9.0",
43
        "echarts-gl": "1.1.1",
44
        "eventemitter3": "4.0.7",
45
        "file-saver": "2.0.2",
46 47 48 49
        "i18next": "19.7.0",
        "i18next-browser-languagedetector": "6.0.1",
        "i18next-fetch-backend": "3.0.0",
        "lodash": "4.17.20",
50
        "mime-types": "2.1.27",
P
Peter Pan 已提交
51
        "moment": "2.28.0",
52
        "nprogress": "0.2.0",
53
        "polished": "3.6.6",
P
Peter Pan 已提交
54
        "query-string": "6.13.2",
55 56
        "react": "16.13.1",
        "react-dom": "16.13.1",
57 58
        "react-helmet": "6.1.0",
        "react-i18next": "11.7.2",
59 60
        "react-input-range": "1.3.0",
        "react-is": "16.13.1",
P
Peter Pan 已提交
61
        "react-rangeslider": "2.2.0",
P
Peter Pan 已提交
62
        "react-redux": "7.2.1",
63
        "react-router-dom": "5.2.0",
P
Peter Pan 已提交
64
        "react-spinners": "0.9.0",
P
Peter Pan 已提交
65
        "react-toastify": "6.0.8",
P
Peter Pan 已提交
66
        "redux": "4.0.5",
P
Peter Pan 已提交
67
        "styled-components": "5.2.0",
P
Peter Pan 已提交
68 69
        "swr": "0.3.0",
        "tippy.js": "6.2.6"
70 71
    },
    "devDependencies": {
72
        "@babel/core": "7.11.6",
P
Peter Pan 已提交
73 74
        "@babel/plugin-proposal-class-properties": "7.10.4",
        "@babel/preset-env": "7.11.5",
75
        "@babel/preset-react": "7.10.4",
76
        "@baiducloud/sdk": "1.0.0-rc.22",
77
        "@simbathesailor/use-what-changed": "0.1.25",
78 79
        "@snowpack/app-scripts-react": "1.10.0",
        "@snowpack/plugin-dotenv": "2.0.1",
P
Peter Pan 已提交
80 81
        "@snowpack/plugin-optimize": "0.2.1",
        "@snowpack/plugin-run-script": "2.1.2",
82 83
        "@svgr/core": "5.4.0",
        "@testing-library/jest-dom": "5.11.4",
P
Peter Pan 已提交
84
        "@testing-library/react": "11.0.4",
P
Peter Pan 已提交
85
        "@types/d3-format": "1.3.1",
86
        "@types/echarts": "4.6.5",
87
        "@types/file-saver": "2.0.1",
P
Peter Pan 已提交
88
        "@types/jest": "26.0.14",
89 90
        "@types/loadable__component": "5.13.0",
        "@types/lodash": "4.14.161",
91
        "@types/mime-types": "2.1.0",
92
        "@types/nprogress": "0.2.0",
93
        "@types/react": "16.9.49",
P
Peter Pan 已提交
94
        "@types/react-dom": "16.9.8",
95
        "@types/react-helmet": "6.1.0",
P
Peter Pan 已提交
96
        "@types/react-rangeslider": "2.2.3",
P
Peter Pan 已提交
97
        "@types/react-redux": "7.1.9",
98 99 100
        "@types/react-router-dom": "5.1.5",
        "@types/snowpack-env": "2.3.0",
        "@types/styled-components": "5.1.3",
101
        "@visualdl/mock": "2.0.9",
P
Peter Pan 已提交
102
        "babel-plugin-styled-components": "1.11.1",
103
        "dotenv": "8.2.0",
P
Peter Pan 已提交
104
        "enhanced-resolve": "4.3.0",
105 106
        "express": "4.17.1",
        "fs-extra": "9.0.1",
107
        "html-minifier": "4.0.0",
108
        "http-proxy-middleware": "1.0.5",
109
        "jest": "26.4.2",
P
Peter Pan 已提交
110
        "snowpack": "2.11.1",
111
        "typescript": "4.0.2",
P
Peter Pan 已提交
112
        "yargs": "16.0.3"
113 114
    },
    "engines": {
P
Peter Pan 已提交
115
        "node": ">=14",
116 117 118 119
        "npm": ">=6"
    },
    "publishConfig": {
        "access": "public"
P
Peter Pan 已提交
120
    }
121
}