-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.06 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "schema-saaz",
"version": "0.0.0-alpha-0",
"description": "A Simple User Interface for creating JSON Schema without writing JSON!",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build": "tsc",
"prepare": "husky install",
"lint": "eslint 'src/**/*.{js,ts,jsx,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,ts,jsx,tsx}' --fix",
"format": "prettier --write 'src/**/*.{js,ts,jsx,tsx,json,css,scss,md}'",
"postinstall": "husky install",
"prepack": "pinst --disable && pnpm build",
"postpack": "pinst --enable"
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/amir78729/schema-builder.git"
},
"bugs": {
"url": "https://github.com/amir78729/schema-builder/issues"
},
"homepage": "https://github.com/amir78729/schema-builder#readme",
"keywords": [
"JSON schema",
"form builder",
"schema",
"builder",
"react"
],
"author": "Amirhossein Alibakhshi",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.20",
"@mui/material": "^5.15.19",
"@rjsf/core": "^5.18.4",
"@rjsf/mui": "^5.18.4",
"@rjsf/utils": "^5.18.4",
"@rjsf/validator-ajv8": "^5.18.4",
"immer": "^10.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.5.0",
"@eslint/compat": "^1.0.3",
"@eslint/js": "^9.4.0",
"@storybook/addon-essentials": "^8.1.6",
"@storybook/addon-interactions": "^8.1.6",
"@storybook/addon-links": "^8.1.6",
"@storybook/addon-onboarding": "^8.1.6",
"@storybook/blocks": "^8.1.6",
"@storybook/react": "^8.1.6",
"@storybook/react-vite": "^8.1.6",
"@storybook/test": "^8.1.6",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^9.4.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"globals": "^15.4.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"pinst": "^3.0.0",
"prettier": "^3.3.2",
"rollup": "^3.20.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"shiki": "^1.10.3",
"storybook": "^8.1.6",
"ts-jest": "^29.2.3",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}