package.json 3.5 KB
Newer Older
B
BingBlog 已提交
1
{
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
    "name": "visual-dl",
    "version": "2.0.0-beta",
    "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",
        "directory": "frontend"
    },
    "scripts": {
        "dev": "cross-env NODE_ENV=development nodemon --watch server --ext ts --exec \"ts-node --project=tsconfig.server.json\" server/index.ts",
        "build:next": "next build",
        "build:server": "tsc --project tsconfig.server.json",
30 31
        "build": "./scripts/build.sh",
        "export": "yarn build:next && next export",
32 33 34 35 36 37 38 39 40 41
        "start": "NODE_ENV=production node dist/server/index.js",
        "lint": "tsc --noEmit && eslint --ext .tsx,.jsx.ts,.js --ignore-path .gitignore .",
        "format": "prettier --write \"**/*.ts\" \"**/*.tsx\" \"**/*.js\"  \"**/*.jsx\"",
        "test": "echo \"Error: no test specified\" && exit 0"
    },
    "dependencies": {
        "dagre-d3": "0.6.4",
        "echarts": "4.6.0",
        "echarts-gl": "1.1.1",
        "express": "4.17.1",
42 43 44 45 46
        "i18next": "19.3.2",
        "i18next-browser-languagedetector": "4.0.2",
        "i18next-chained-backend": "2.0.1",
        "i18next-localstorage-backend": "3.1.1",
        "i18next-xhr-backend": "3.2.2",
47 48 49 50 51 52 53 54
        "isomorphic-unfetch": "3.0.0",
        "lodash": "4.17.15",
        "moment": "2.24.0",
        "next": "9.2.2",
        "nprogress": "0.2.0",
        "polished": "3.4.4",
        "react": "16.13.0",
        "react-dom": "16.13.0",
55
        "react-i18next": "11.3.3",
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
        "react-input-range": "1.3.0",
        "react-is": "16.13.0",
        "save-svg-as-png": "1.4.17",
        "styled-components": "5.0.1",
        "swr": "0.1.18"
    },
    "devDependencies": {
        "@babel/core": "7.8.6",
        "@types/d3": "5.7.2",
        "@types/dagre": "0.7.42",
        "@types/echarts": "4.4.3",
        "@types/express": "4.17.2",
        "@types/faker": "4.1.10",
        "@types/lodash": "4.14.149",
        "@types/node": "13.7.7",
        "@types/nprogress": "0.2.0",
        "@types/react": "16.9.23",
        "@types/react-dom": "16.9.5",
        "@types/styled-components": "5.0.1",
        "@types/webpack": "4.41.7",
        "@typescript-eslint/eslint-plugin": "2.21.0",
        "@typescript-eslint/parser": "2.21.0",
        "babel-plugin-styled-components": "1.10.7",
        "babel-plugin-typescript-to-proptypes": "1.2.1",
        "cross-env": "7.0.0",
        "eslint": "6.8.0",
        "eslint-config-prettier": "6.10.0",
        "eslint-plugin-prettier": "3.1.2",
        "eslint-plugin-react": "7.18.3",
        "eslint-plugin-react-hooks": "2.5.0",
        "faker": "4.1.0",
        "husky": "4.2.3",
        "lint-staged": "10.0.8",
        "nodemon": "2.0.2",
        "prettier": "1.19.1",
        "ts-node": "8.6.2",
        "typescript": "3.8.3"
    },
    "engines": {
        "node": ">=10",
        "npm": ">=6"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
    }
B
BingBlog 已提交
103
}