-
Notifications
You must be signed in to change notification settings - Fork 271
/
package.json
76 lines (76 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
74
75
76
{
"name": "@formio/react",
"version": "6.0.0-rc.1",
"description": "React renderer for form.io forms.",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "tsc --project tsconfig.json",
"lint": "eslint src",
"format": "prettier . --write",
"prepublish": "yarn format && yarn lint && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formio/react-formio.git"
},
"keywords": [
"React",
"component",
"Formio",
"Forms",
"react-component"
],
"author": "Randall Knutson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/formio/react-formio/issues"
},
"homepage": "https://github.com/formio/react-formio#readme",
"dependencies": {
"@ungap/structured-clone": "^1.2.0",
"core-js": "^3.35.1",
"lodash": "^4.17.21",
"prop-types": "^15.8.1"
},
"devDependencies": {
"@formio/core": "2.2.2-rc.5",
"@formio/js": "5.0.0-rc.76",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/react": "^18.2.55",
"@types/ungap__structured-clone": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"bootstrap": "^5.3.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-css": "^6.0.1",
"jsdom": "^22.1.0",
"prettier": "3.2.4",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsc": "^2.0.4",
"typescript": "^5.3.3",
"webpack": "^5.88.2"
},
"files": [
"lib"
],
"peerDependencies": {
"@formio/core": "2.2.2-rc.5",
"@formio/js": "5.0.0-rc.76",
"react": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.1.0",
"react-dom": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.1.0"
}
}