forked from RXNT/react-jsonschema-form-conditionals
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
134 lines (134 loc) · 4.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "rjsf-conditionals",
"description": "Extension of @rjsf/core with conditional field support",
"private": false,
"contributors": [
"mavarazy <[email protected]>",
"Aivaras Prudnikovas <[email protected]>"
],
"version": "1.5.0",
"scripts": {
"build": "rimraf dist lib && npm run build:umd && npm run build:cjs && npm run build:es && npm run build:es:lib",
"build:umd": "cross-env NODE_ENV=production BABEL_ENV=umd webpack --config webpack.config.dist.js",
"build:cjs": "cross-env NODE_ENV=production BABEL_ENV=cjs babel ./src --out-dir ./dist/cjs --ignore \"node_modules,*/__mocks__\"",
"build:es": "cross-env NODE_ENV=production BABEL_ENV=es babel ./src --out-dir ./dist/es --ignore \"node_modules,*/__mocks__\"",
"build:es:lib": "cross-env NODE_ENV=production BABEL_ENV=es babel ./src --out-dir ./lib --ignore \"node_modules,*/__mocks__\"",
"cs-check": "prettier -l $npm_package_prettierOptions '{playground,src,test}/**/*.js'",
"cs-format": "prettier $npm_package_prettierOptions '{playground,src,test}/**/*.js' --write",
"lint": "eslint 'src/**/*.js' 'test/**/*.js' 'playground/**/*.js'",
"precommit": "lint-staged",
"prepush": "npm test",
"playground:build": "rimraf build && cross-env NODE_ENV=production webpack --config webpack.playground.prod.js --mode production",
"playground:run:dev": "webpack serve --config webpack.playground.dev.js --mode development",
"playground:run:dist": "npm run playground:build && http-server build --port 8080",
"start": "npm run playground:run:dev",
"test": "jest"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
]
},
"prettierOptions": "--jsx-bracket-same-line --trailing-comma es5 --semi",
"lint-staged": {
"{playground,src,test}/**/*.js": [
"npm run lint",
"npm run cs-format",
"git add"
]
},
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"files": [
"dist",
"lib"
],
"engineStrict": false,
"engines": {
"node": ">=10"
},
"peerDependencies": {
"@rjsf/core": ">=2.0.0",
"core-js": "^2.5.7",
"prop-types": "^15.7.2",
"react": "^16.9.0 || >=17"
},
"dependencies": {
"deepcopy": "^2.0.0",
"lodash.isequalwith": "^4.4.0",
"selectn": "^1.1.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.9.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"@babel/runtime-corejs3": "^7.23.2",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/styles": "^4.11.4",
"@rjsf/core": "^3.2.1",
"@rjsf/material-ui": "^3.2.1",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.0.0",
"babel-jest": "^27.4.6",
"babel-loader": "^8.3.0",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.2",
"css-loader": "^5.2.7",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^8.27.0",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-standard": "^5.0.0",
"exit-hook": "^3.0.0",
"html": "1.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"http-server": "^14.1.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"jest-cli": "^29.3.1",
"json-rules-engine": "^5.0.3",
"json-rules-engine-simplified": "^0.1.17",
"lint-staged": "^12.3.3",
"mini-css-extract-plugin": "^1.0.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"prettier": "^2.0.5",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rimraf": "^3.0.2",
"sinon": "^13.0.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^4.2.2",
"webpack": "^4.46.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.7.4"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivarprudnikov/rjsf-conditionals.git"
},
"keywords": [
"react",
"form",
"rjsf",
"json-schema",
"conditional",
"predicate"
],
"license": "Apache-2.0",
"homepage": "https://github.com/ivarprudnikov/rjsf-conditionals#readme"
}