-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.87 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
{
"name": "geodashboard-library",
"private": true,
"description": "Geostreams React library to visualize data from Geostreaming API.",
"author": "NCSA",
"license": "NCSA",
"keywords": [
"geodashboard",
"geostreams",
"NCSA"
],
"repository": {
"type": "git",
"url": "git+https://github.com/geostreams/geodashboard"
},
"bugs": {
"url": "https://github.com/geostreams/geodashboard"
},
"homepage": "https://github.com/geostreams/geodashboard",
"main": "index.js",
"scripts": {
"link:all": "for d in packages/*/; do (cd $d && yarn link); done",
"geostreaming": "lerna run start --stream --scope @geostreams/geostreaming",
"core": "lerna run start --stream --scope @geostreams/core",
"start": "lerna run start --stream --scope",
"postinstall": "lerna bootstrap --use-workspaces --force-local",
"release": "lerna publish",
"release:version": "lerna version --exact --no-changelog --no-push --no-git-tag-version",
"release:publish": "lerna publish from-package --yes",
"test": "lerna run test --stream --scope",
"clean": "find . -name 'yarn.lock' -prune -exec rm '{}' + && find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +"
},
"publishConfig": {
"access": "public"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"core__old/**"
]
},
"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",
"@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",
"@types/d3": "~5.7.2",
"@types/ol": "~6.3.1",
"@types/react": "^16.8.6",
"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-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",
"lerna": "^4.0.0",
"less": "^4.1.1",
"less-loader": "^8.1.0",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^1.4.1",
"process": "0.11.10",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0",
"react-redux": "~7.2.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"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"
}
}