-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1012 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
33
{
"name": "root",
"private":true,
"workspaces": [
"formily/packages/*",
"designable/formily/*",
"designable/packages/*",
"atali/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"build": "lerna run build",
"preversion": "yarn run build",
"version:beta": "lerna version prerelease --preid beta",
"release:github": "ts-node scripts/release release",
"release:force": "lerna publish from-package --yes --registry=https://registry.npmjs.org/",
"prelease:force": "lerna publish from-package --yes --dist-tag next",
"release": "lerna publish --registry=https://registry.npmjs.org/",
"codingPublish": "lerna publish --registry=https://registry.npmjs.org/"
},
"dependencies": {},
"devDependencies": {
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.45",
"antd": "5.18.0",
"lerna": "^7.1.1",
"react": "^18.2.45",
"react-dom": "^18.2.45",
"react-is": "^18.2.45"
},
"version": "0.0.0"
}