-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.96 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
{
"name": "@w3rone/json-schema-form",
"version": "0.0.0-development",
"description": "Render forms based on JSON Schema definitions with React",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"./lib/*"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest ./src",
"lint": "eslint src",
"typecheck": "tsc --project tsconfig.build.json",
"semantic-release": "semantic-release",
"storybook": "storybook dev -p 6006 --disable-telemetry",
"build-storybook": "storybook build --disable-telemetry"
},
"author": "Cyrille Perois <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/w3r-one/json-schema-form.git"
},
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.0.5",
"@storybook/addon-interactions": "^8.0.5",
"@storybook/addon-links": "^8.0.5",
"@storybook/blocks": "^8.0.5",
"@storybook/react": "^8.0.5",
"@storybook/react-vite": "^8.0.5",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^16.0.0",
"@types/lodash.get": "^4.4.7",
"@types/lodash.set": "^4.3.7",
"@types/react": "^18.0.35",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.11.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^3.0.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semantic-release": "^24.0.0",
"storybook": "^8.0.5",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@storybook/test": "^8.0.5",
"immer": "^10.0.2",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"react-error-boundary": "^4.0.3",
"remeda": "^2.0.3",
"ts-pattern": "^5.0.1"
},
"release": {
"branches": [
"main",
"next"
]
}
}