-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.78 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
{
"version": "1.0.0",
"name": "quickform",
"author": "Kasper Baun <kasperbaun@hotmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "18.11.9",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0",
"concurrently": "7.0.0",
"multi-semantic-release": "3.0.2",
"npm-run-all": "^4.1.5",
"semantic-release": "19.0.5",
"semantic-release-monorepo": "7.0.5",
"typescript": "5.4.2"
},
"scripts": {
"link": "concurrently \"npm:link-*\"",
"link-core": "npm --workspace packages/core link",
"link-designer": "npm --workspace packages/designer link",
"link-inputs": "npm run link --workspace packages/inputs",
"link-querybuilder": "npm --workspace packages/querybuilder link",
"publish": "npm-run-all --continue-on-error publish-*",
"publish-core": "npm --workspace packages/core publish --access public",
"publish-designer": "npm --workspace packages/designer publish --access public",
"release": "npm-run-all --continue-on-error release-*",
"release-core": "npm run release --workspace packages/core",
"release-designer": "npm run release --workspace packages/designer",
"release-inputs": "npm run release --workspace packages/inputs",
"release-querybuilder": "npm run release --workspace packages/querybuilder",
"eavfw-link": "npm link @eavfw/apps @eavfw/next @eavfw/expressions @eavfw/manifest @eavfw/hooks @eavfw/forms @eavfw/utils @eavfw/designer @eavfw/designer-core @eavfw/designer-nodes",
"playground": "npm --workspace packages/playground run dev"
},
"config": {
"force": true
},
"private": true,
"workspaces": {
"packages": [
"packages/*",
"packages/inputs/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/EAVFW/QuickForm"
}
}