-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.24 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.24 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "json-forms-designer",
"version": "0.0.2",
"description": "Drag&Drop based UI for generating JSONSchema based forms",
"keywords": [
"jsonforms",
"form",
"forms",
"wizard",
"json",
"schema",
"jsonschema",
"uischema",
"frontend",
"generator",
"input",
"designer",
"editor",
"generator"
],
"license": "MIT",
"homepage": "https://github.com/FormsWizard",
"repository": {
"type": "git",
"url": "https://github.com/FormsWizard/forms-designer.git"
},
"contributors": [
{
"name": "Johannes Lötzsch"
},
{
"name": "Jakob Steege"
},
{
"name": "winzlieb",
"email": "winzlieb@c3d2.de"
}
],
"private": true,
"scripts": {
"build": "turbo run build --filter=!@formswizard/wizard-vite --continue --concurrency 25",
"build:packages": "turbo run build --filter=./packages/*",
"build:vite": "bun run build:packages && turbo run build --filter=./apps/vite",
"dev": "turbo run dev --concurrency 25",
"lint": "turbo run lint",
"lint-fix": "turbo run lint-fix --concurrency 25",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"build:pages": "./makeSite.sh",
"push": "turbo run push --filter=./packages/*",
"clean-reinstall": "rm -rf node_modules apps/*/node_modules packages/*/node_modules && bun install"
},
"devDependencies": {
"@turbo/gen": "^2.5.6",
"eslint": "^9.36.0",
"eslint-config-formsdesigner": "workspace:*",
"hygen": "^6.2.11",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"turbo": "^2.5.6"
},
"packageManager": "bun@1.3.9",
"workspaces": [
"apps/*",
"packages/*"
],
"catalog": {
"ajv": "^8.18.0",
"lodash-es": "^4.17.21",
"@types/lodash-es": "^4.17.12",
"@mui/material": "^7.0.0",
"@mui/icons-material": "^7.0.0",
"@mui/system": "^7.0.0",
"@mui/lab": "^7.0.0-beta.0",
"@mui/x-date-pickers": "^8.0.0",
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@emotion/cache": "^11.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@jsonforms/core": "^3.7.0",
"@jsonforms/react": "^3.7.0",
"@jsonforms/material-renderers": "^3.7.0"
}
}