-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.37 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@geostreams/gltg",
"version": "3.7.0",
"main": "src/index.jsx",
"private": true,
"scripts": {
"link:geostreams": "yarn link @geostreams/core && yarn link @geostreams/geostreaming && yarn link @geostreams/core__old",
"start": "webpack serve --config webpack.dev.js",
"lint": "eslint -c .eslintrc --ext .js --ext .jsx --ignore-path .eslintignore ./",
"lint:fix": "eslint -c .eslintrc --ext .js --ext .jsx --ignore-path .eslintignore --fix ./",
"flow": "flow",
"build": "webpack --config webpack.prod.js",
"clean": "find . -name 'yarn.lock' -prune -exec rm '{}' + && find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +"
},
"author": "NCSA",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.22.5",
"@geostreams/core": "^3.9.0",
"@geostreams/core__old": "^3.7.0",
"@geostreams/geostreaming": "^3.9.0",
"@geostreams/gltg__old": "^3.6.0",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "~4.0.0-alpha.57",
"@material-ui/styles": "^4.11.2",
"favicons": "^6.2.1",
"geobuf": "~3.0.1",
"pbf": "~3.2.1",
"react": "^17.0.2",
"react-bootstrap": "^2.4.0",
"react-dom": "^17.0.2",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"react-vega": "^7.4.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"rsuite": "^5.15.0",
"sync-fetch": "^0.5.2",
"vega": "^5.19.1",
"vega-lite": "^4.17.0"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.13.15",
"@babel/preset-flow": "^7.13.13",
"@babel/preset-react": "^7.13.13",
"@geostreams/eslint-config": "^1.0.0",
"@types/d3": "^6.3.0",
"@types/ol": "^6.4.2",
"@types/react": "^16.14.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "*",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^5.2.1",
"css-minimizer-webpack-plugin": "^2.0.0",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-flowtype": "^5.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^2.5.3",
"favicons-webpack-plugin": "^5.0.2",
"file-loader": "^6.2.0",
"flow-bin": "^0.148.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^6.0.0",
"less": "^4.1.1",
"less-loader": "^8.1.0",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^1.4.1",
"prettier": "3.3.3",
"process": "0.11.10",
"webpack": "^5.31.2",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"//disabled//husky": {
"hooks": {
"pre-commit": "flow && lint-staged"
}
},
"//disabled//lint-staged": {
"*.{js,jsx}": [
"eslint -c .eslintrc --ignore-path .eslintignore"
]
},
"workspaces": {
"packages": [
"modules/*"
],
"nohoist": [
"**/@geostreams/gltg__old/**"
]
}
}