-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.77 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": "cinet-geodashboard",
"version": "0.0.7",
"main": "src/index.jsx",
"scripts": {
"link:geostreams": "yarn link @geostreams/core && yarn link @geostreams/geostreaming && yarn link @geostreams/core__old",
"start": "webpack serve --open --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"
},
"author": "NCSA",
"license": "ISC",
"dependencies": {
"@geostreams/core": "^3.8.0",
"@geostreams/geostreaming": "^3.8.0",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "~4.0.0-alpha.57",
"@material-ui/styles": "^4.11.2",
"material-components-web": "0.26.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"favicons": "^6.2.1"
},
"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/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": "^8.1.1",
"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",
"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",
"process": "0.11.10"
},
"//disabled//husky": {
"hooks": {
"pre-commit": "flow && lint-staged"
}
},
"//disabled//lint-staged": {
"*.{js,jsx}": [
"eslint -c .eslintrc --ignore-path .eslintignore"
]
}
}