forked from MrHertal/react-admin-json-view
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
{
"name": "react-admin-json-view",
"version": "2.0.0",
"description": "JSON field and input for react-admin.",
"repository": {
"type": "git",
"url": "https://github.com/MrHertal/react-admin-json-view"
},
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"build": "rollup -c",
"lint": "eslint ."
},
"author": "Grégoire Hertault",
"license": "MIT",
"files": [
"build"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/"
]
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-admin": "^4.2.5",
"react-dom": "^18.2.0",
"rollup": "^2.77.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "*",
"react-admin": "*",
"react-dom": "*"
},
"dependencies": {
"@microlink/react-json-view": "^1.22.2"
}
}