-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.71 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
{
"name": "json-diff-react",
"version": "1.0.1",
"author": "Joonas Laukka <joonas.laukka@relexsolutions.com>",
"description": "A React.js component based on the json-diff package",
"homepage": "https://github.com/relex/json-diff-react",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"README.md",
"LICENSE-MIT"
],
"keywords": [
"react",
"json",
"diff",
"compare",
"typescript"
],
"dependencies": {
"@ewoudenberg/difflib": "^0.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"test": "jest",
"prettier": "prettier --write src/",
"lint": "eslint src/",
"build-examples-bundle": "tsc --build && webpack --config examples/json-diff-react.webpack.config.js"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@jest/globals": "^29.4.3",
"@types/jest": "^29.4.0",
"@types/json-diff": "^0.9.1",
"@types/react": "^18.0.28",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"babel-jest": "^29.4.3",
"eslint": "^8.35.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.32.2",
"fast-check": "^3.7.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"prettier": "^2.8.4",
"react-test-renderer": "^18.2.0",
"typescript": "^4.9.5",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
}
}