forked from mithyalabs/ml-react-forms
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "react-forms",
"version": "3.0.2-beta",
"description": "Creating declarative dynamic forms",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "rm -rf dist/ && tsc",
"test": "jest",
"tsc": "tsc"
},
"files": [
"dist"
],
"author": "Mithyalabs Team",
"license": "ISC",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/lodash": "^4.14.202",
"@types/node": "^22.7.5",
"@types/react": "^^17.0.0 || ^18.0.0",
"@types/react-dom": "^17.0.0 || ^18.0.0",
"@types/react-highlight-words": "^0.16.0",
"@types/react-places-autocomplete": "^7.2.9",
"@types/react-test-renderer": "^17.0.0 || ^18.0.0",
"jest": "^29.7.0",
"react-is": "^17.0.0 || ^18.0.0",
"react-test-renderer": "^17.0.0 || ^18.0.0",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.1.1",
"@mui/lab": "^5.0.0-alpha.55",
"@mui/material": "^5.0.6",
"@mui/x-date-pickers": "^6.0.0",
"dayjs": "^1.11.13",
"formik": "^2.2.9",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"react-highlight-words": "^0.20.0",
"react-places-autocomplete": "^7.3.0"
}
}