package.json 2.0 KB
Newer Older
B
BingBlog 已提交
1
{
2
    "name": "visualdl",
3 4 5 6
    "private": true,
    "workspaces": [
        "packages/*"
    ],
P
Peter Pan 已提交
7
    "version": "2.0.0",
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
    "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": {
30
        "bootstrap": "lerna bootstrap",
31
        "build": "./scripts/build.sh",
32 33
        "clean": "rimraf output */dist wasm/target",
        "lint": "eslint --ext .tsx,.jsx.ts,.js --ignore-path .gitignore .",
34
        "format": "prettier --write \"**/*.ts\" \"**/*.tsx\" \"**/*.js\"",
35 36
        "test": "yarn workspaces run test",
        "prepublishOnly": "yarn lint && yarn test && yarn build",
37
        "preversion": "yarn lint",
38
        "version": "yarn format && git add -A"
39 40
    },
    "devDependencies": {
41 42
        "@typescript-eslint/eslint-plugin": "2.31.0",
        "@typescript-eslint/parser": "2.31.0",
43
        "eslint": "6.8.0",
44 45
        "eslint-config-prettier": "6.11.0",
        "eslint-plugin-prettier": "3.1.3",
46
        "eslint-plugin-react": "7.19.0",
47
        "eslint-plugin-react-hooks": "4.0.0",
48
        "husky": "4.2.5",
49 50 51
        "lerna": "3.20.2",
        "lint-staged": "10.2.2",
        "prettier": "2.0.5",
52
        "rimraf": "3.0.2",
P
Peter Pan 已提交
53
        "typescript": "3.8.3",
54
        "yarn": "1.22.4"
55 56 57 58 59 60 61 62 63 64
    },
    "engines": {
        "node": ">=10",
        "npm": ">=6"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
    }
B
BingBlog 已提交
65
}