-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.44 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.44 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
{
"name": "react-final-form-generator",
"version": "1.4.0",
"description": "Generating form over react-final-form",
"main": "dist/react-final-form-generator.js",
"scripts": {
"lint": "$(npm bin)/eslint ./src",
"lint:fix": "$(npm bin)/eslint --fix ./src",
"build": "$(npm bin)/webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "$(npm bin)/start-storybook -p 9001 -c .storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/batazor/react-final-form-generator.git"
},
"keywords": [
"react",
"form",
"generate"
],
"author": "@batazor",
"license": "MIT",
"bugs": {
"url": "https://github.com/batazor/react-final-form-generator/issues"
},
"homepage": "https://github.com/batazor/react-final-form-generator#readme",
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-decorators": "^7.23.2",
"@babel/plugin-proposal-do-expressions": "^7.22.5",
"@babel/plugin-proposal-export-default-from": "^7.22.17",
"@babel/plugin-proposal-function-bind": "^7.22.5",
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-pipeline-operator": "^7.22.15",
"@babel/plugin-proposal-throw-expressions": "^7.22.5",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@storybook/addon-actions": "^6.5.16",
"@storybook/cli": "^7.4.6",
"@storybook/react": "^6.5.16",
"babel": "^6.23.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.3.0",
"classnames": "^2.3.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"prop-types": "^15.8.1",
"webpack-cli": "^3.3.12"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"@mui/material": "^5.14.13",
"lodash": "^4.17.21"
},
"dependencies": {
"@mui/material": "^5.14.13",
"final-form": "^4.20.10",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-color": "^2.19.3",
"react-final-form": "^6.5.9",
"react-google-recaptcha": "^1.1.0"
}
}