-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.64 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
{
"name": "@bc/react-json-form",
"version": "0.2.0",
"description": "react json form",
"main": "./dist/cjs/react-json-form.min.js",
"module": "./dist/es/react-json-form.min.js",
"browser": "./dist/umd/react-json-form.min.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"test": "NODE_ENV=test jest"
},
"dependencies": {
"formik": "^2.2.9",
"zustand": "^4.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.0.0",
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"prettier": "^2.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.72.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^28.0.8",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blinkcat/react-json-form.git"
},
"prettier": {
"singleQuote": true,
"semi": true
},
"keywords": [
"react",
"json",
"form"
],
"author": "blinkcat",
"license": "MIT",
"bugs": {
"url": "https://github.com/blinkcat/react-json-form/issues"
},
"homepage": "https://github.com/blinkcat/react-json-form#readme"
}