-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 2.38 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
{
"name": "@redheadphone/react-json-grid",
"version": "0.9.2",
"description": "React Component that converts JSON to nested grid tables.",
"author": "Huzaifa Khilawala",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RedHeadphone/react-json-grid.git"
},
"keywords": [
"react",
"json",
"viewer",
"table",
"data",
"display",
"nested",
"grid",
"component",
"library",
"ui"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.umd.js",
"files": [
"dist"
],
"scripts": {
"demo": "cd demo && npm run start",
"test": "jest --silent --config jest.config.ts",
"build": "rollup -c --bundleConfigAsCjs",
"dev": "rollup -c -w --bundleConfigAsCjs",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-external-helpers": "^7.24.7",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.25.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.0",
"@rollup/plugin-url": "^8.0.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-standard": "^3.1.0",
"jest": "^29.7.0",
"jest-css-modules-transform": "^4.4.2",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.22.4",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-scss": "^4.0.0",
"sass": "^1.79.3",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
}
}