-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 907 Bytes
/
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
{
"name": "magicflow",
"private": true,
"license": "MIT",
"author": "Chengdu Mufan Technology Co., Ltd.",
"scripts": {
"lerna:publish": "yarn build && lerna publish prerelease --registry=https://registry.npmjs.org",
"prebuild:icons": "yarn workspace @magicflow/icons prebuild",
"prebuild": "yarn prebuild:icons",
"build": "rimraf packages/*/bld && tsc --build",
"lint": "eslint .",
"lint-prettier": "prettier --check .",
"test": "yarn lint-prettier && yarn build && yarn lint"
},
"workspaces": [
"packages/procedure",
"packages/task",
"packages/editor",
"packages/condition",
"packages/plugins",
"packages/icons"
],
"devDependencies": {
"@mufan/code": "^0.2.7",
"@mufan/eslint-plugin": "^0.1.37",
"eslint": "^7.23.0",
"lerna": "^3.22.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.2.4"
}
}