forked from didi/LogicFlow
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.83 KB
/
package.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "logicflow",
"private": true,
"description": "一款高拓展性、重执行、专业的流程图编辑框架",
"license": "Apache-2.0",
"author": "LogicFlow-Team",
"workspaces": [
"packages/*",
"examples"
],
"scripts": {
"dev:core": "npm run build:types && npm run build && cd packages/core && npm run dev",
"dev:extension": "npm run build:types && npm run build && cd packages/extension && npm run dev",
"bootstrap": "yarn",
"clean": "lerna clean",
"build": "lerna run build",
"build:types": "lerna run types",
"lint": "eslint --cache",
"commit": "git-cz",
"prepare": "husky install",
"build:example": "lerna run build --scope examples",
"lerna:publish": "lerna publish from-git",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.2.0",
"@vuepress-reco/vuepress-plugin-back-to-top": "^1.6.0",
"commitizen": "^4.2.4",
"cz-lerna-changelog": "^2.0.3",
"eslint": "^7.0.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-standard": "^4.0.1",
"eslint-webpack-plugin": "^2.1.0",
"husky": "^6.0.0",
"inquirer": "^7.3.3",
"lerna": "^3.22.1",
"lint-staged": "^10.5.4",
"shelljs": "^0.8.4",
"typescript": "^3.8.3",
"vuepress": "^1.7.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"lint-staged": {
"*.{ts,tsx}": "npm run lint"
}
}