-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.52 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
{
"name": "json-to-extraction-query",
"version": "1.3.1",
"description": "GUI that translates manual user selections on imported JSON file into extraction query. The extraction query is a hybrid of JSON Path plus syntax and can be utilized by further services to create a table of extracted values.",
"keywords": [
"json",
"extraction",
"table",
"JSONPath",
"JSONPath Plus",
"relation"
],
"homepage": "https://github.com/gkarat/json-to-extraction-query",
"bugs": {
"url": "https://github.com/gkarat/json-to-extraction-query/issues"
},
"author": {
"name": "Georgii Karataev",
"email": "[email protected]",
"url": "https://github.com/gkarat"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gkarat/json-to-extraction-query.git"
},
"main": "dist/main.js",
"scripts": {
"build": "webpack --mode=production --config webpack.prod.js",
"start": "webpack-dev-server --mode=development --open --hot --config webpack.dev.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src"
},
"dependencies": {
"@reach/accordion": "^0.16.1",
"@reduxjs/toolkit": "^1.6.1",
"jsoneditor": "^9.5.5",
"jsonpath-plus": "^6.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.13.0",
"react-redux": "^7.2.5"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@hot-loader/react-dom": "^17.0.1",
"@tsconfig/recommended": "^1.0.1",
"@types/jsoneditor": "^8.6.1",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.4.3",
"node-sass": "^6.0.1",
"prettier": "^2.4.1",
"sass-loader": "^12.3.0",
"source-map-loader": "^3.0.0",
"style-loader": "^3.2.1",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"typescript-plugin-css-modules": "^3.4.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.0"
}
}