forked from formio/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.45 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
{
"name": "@formio/react",
"version": "5.2.4-rc.1",
"description": "React renderer for form.io forms.",
"main": "lib/index.js",
"scripts": {
"test": "karma start --single-run",
"build": "babel ./src --ignore=*.spec.js --out-dir ./lib --presets es2015,react,stage-2",
"build-types": "npx tsc",
"lint": "eslint src",
"watch": "babel ./src --watch --ignore=*.spec.js --out-dir ./lib --presets es2015,react,stage-2",
"prepublish": "npm run lint && npm run build && npm run build-types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formio/react-formio.git"
},
"keywords": [
"React",
"component",
"Formio",
"Forms",
"react-component"
],
"author": "Randall Knutson <randall@form.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/formio/react-formio/issues"
},
"homepage": "https://github.com/formio/react-formio#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"core-js": "^3.21.1",
"eventemitter2": "^6.4.5",
"lodash": "^4.17.21",
"prop-types": "^15.8.1"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"ajv-pack": "^0.3.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.4",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.26.0",
"chai": "^4.3.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"escope": "^3.6.0",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-formio": "^1.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-react": "^7.29.4",
"formiojs": "^4.14.8",
"jsdom": "^19.0.0",
"karma": "^6.3.18",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^5.0.0",
"mocha": "^9.1.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-test-renderer": "^17.0.2",
"react-transform-catch-errors": "^1.0.0",
"sinon": "^12.0.1",
"typescript": "^4.5.2",
"webpack": "^5.65.0"
},
"files": [
"lib"
],
"peerDependencies": {
"formiojs": "^4.12.4-rc.2",
"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"
}
}