This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.54 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
108
109
110
111
{
"name": "cate-app",
"version": "3.1.5-dev.0",
"private": true,
"homepage": ".",
"dependencies": {
"@blueprintjs/core": "^3.30.1",
"@blueprintjs/datetime": "^3.18.5",
"@blueprintjs/icons": "^3.20.0",
"@blueprintjs/select": "^3.13.6",
"@blueprintjs/table": "^3.8.12",
"@datapunt/matomo-tracker-react": "^0.3.1",
"@react-keycloak/web": "^1.0.6",
"@types/js-cookie": "^2.2.6",
"cesium": "1.71.0",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.3.1",
"d3-fetch": "^1.1.2",
"deep-equal": "^1.0.1",
"deep-object-diff": "^1.1.0",
"js-cookie": "^2.2.1",
"keycloak-js": "^8.0.2",
"normalize.css": "^8.0.1",
"react": "^16.13.1",
"react-ace": "^5.9.0",
"react-addons-css-transition-group": "^15.6.2",
"react-color": "^2.17.3",
"react-dom": "^16.13.1",
"react-dropzone": "^11.0.2",
"react-markdown": "^6.0.2",
"react-redux": "^5.1.2",
"react-router-dom": "^5.2.0",
"react-transition-group": "^1.2.1",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"remark-gfm": "^1.0.0",
"reselect": "^2.5.4",
"semver": "^5.6.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/chai": "^4.2.9",
"@types/chai-as-promised": "^7.1.2",
"@types/classnames": "0.0.32",
"@types/d3-fetch": "^1.1.5",
"@types/deep-equal": "0.0.30",
"@types/dom4": "^1.5.20",
"@types/geojson": "^1.0.6",
"@types/jest": "^24.0.0",
"@types/json-schema": "^7.0.7",
"@types/mocha": "^2.2.41",
"@types/node": "^12.0.0",
"@types/oboe": "^2.0.28",
"@types/proj4": "^2.5.0",
"@types/react": "^16.9.0",
"@types/react-color": "^2.17.3",
"@types/react-dom": "^16.9.0",
"@types/react-dropzone": "^5.1.0",
"@types/react-redux": "^5.0.21",
"@types/react-router-dom": "^5.1.5",
"@types/react-test-renderer": "^16.8.1",
"@types/redux-logger": "^3.0.7",
"@types/tether": "^1.4.4",
"@types/uuid": "^8.3.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"copyfiles": "^2.2.0",
"http-server": "^0.12.3",
"jsdom": "16.5.0",
"jsdom-global": "3.0.2",
"mocha": "^5.2.0",
"oboe": "2.1.4",
"react-scripts": "3.4.1",
"react-test-renderer": "^16.12.0",
"rimraf": "^3.0.2",
"spectron": "^3.8.0",
"ts-node": "^8.6.2",
"typescript": "~3.7.2"
},
"scripts": {
"start": "yarn run cp_oboe && yarn run cp_cesium && react-scripts start",
"build": "yarn run cp_oboe && yarn run rm_cesium && yarn run cp_cesium && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"cp_oboe": "copyfiles -u 3 ./node_modules/oboe/dist/oboe-browser.js ./public",
"rm_cesium": "yarn run rimraf ./public/cesium",
"cp_cesium": "yarn run _cp_cesium_assets & yarn run _cp_cesium_widgets & yarn run _cp_cesium_workers",
"_cp_cesium_assets": "copyfiles -u 3 \"./node_modules/cesium/Source/Assets/**/*\" ./public/cesium",
"_cp_cesium_widgets": "copyfiles -u 3 \"./node_modules/cesium/Source/Widgets/**/*\" ./public/cesium",
"_cp_cesium_workers": "copyfiles -u 4 \"./node_modules/cesium/Build/Cesium/Workers/**/*\" ./public/cesium"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}