-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.62 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.62 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "mui-forms",
"version": "1.0.10",
"description": "Material UI forms with json based schema",
"author": "manojadams",
"license": "MIT",
"repository": "manojadams/mui-forms",
"homepage": "https://mui-metaform-docs.vercel.app",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"engines": {
"node": ">=10"
},
"keywords": [
"material forms",
"mui forms",
"dynamic forms",
"react forms"
],
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs -css",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint src/",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build",
"doc": "typedoc src/index.tsx --excludeInternal"
},
"peerDependencies": {
"react": "^18.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^7.2.1",
"@types/eslint": "^8.21.1",
"@types/jest": "^25.1.4",
"@types/node": "^16.18.12",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.2",
"eslint": "^8.34.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^2.2.0",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"react": "18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"typedoc": "^0.23.25",
"typescript": "^4.9.5"
},
"files": [
"dist"
],
"dependencies": {
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@manojadams/metaforms-core": "^3.0.13",
"@mui/material": "^5.10.0",
"@mui/x-date-pickers": "^5.0.19",
"date-fns": "^2.29.1",
"i": "^0.3.7",
"layout-emotions": "^1.0.6",
"npm": "^9.8.1",
"react-number-format": "^5.2.2"
}
}