-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3 KB
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
{
"name": "great-circle-map",
"version": "0.1.1",
"scripts": {
"build": "webpack --watch --mode development",
"build:prod": "NODE_ENV=production webpack --mode production",
"lint": "eslint --ext .js,.jsx src/ server.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"upload": "gzip -v -c public/bundle.js | aws s3 cp - s3://www.greatcirclemap.com/bundle.js --acl public-read --content-type application/javascript --content-encoding gzip",
"stats": "NODE_ENV=production webpack --mode production --profile --json > stats.json && webpack-bundle-analyzer stats.json public -s gzip",
"format": "prettier --write 'src/**/*.{js,jsx}'"
},
"author": "Markus Englund",
"license": "MIT",
"engines": {
"node": ">=14.15.0",
"npm": ">=7"
},
"dependencies": {
"@babel/runtime": "^7.24.0",
"@turf/great-circle": "^7.2.0",
"@turf/helpers": "^7.2.0",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"cookie-parser": "^1.4.3",
"d3-geo": "^1.10.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"geodesy": "^1.1.3",
"geographiclib": "^1.49.0",
"history": "^4.7.2",
"leaflet": "^1.9.4",
"lodash.uniqueid": "^4.0.1",
"papaparse": "^5.5.3",
"prop-types": "^15.6.2",
"rc-tooltip": "^3.7.2",
"react": "^18.3.1",
"react-aria-menubutton": "^7.0.3",
"react-close-on-escape": "^2.0.0",
"react-collapse": "^4.0.3",
"react-color": "^2.14.1",
"react-dom": "^18.3.1",
"react-draggable": "^3.0.5",
"react-google-maps": "^9.4.5",
"react-icons": "^5.5.0",
"react-leaflet": "^4.2.1",
"react-modal": "^3.5.1",
"react-motion": "^0.5.2",
"react-onclickoutside": "^6.13.2",
"react-redux": "^9.1.2",
"react-select": "github:yogaboll/react-select",
"react-sidebar": "^3.0.2",
"react-switch": "^3.0.4",
"react-tooltip": "^3.11.6",
"redux": "^4.0.0",
"redux-little-router": "git+https://github.com/adamesque/redux-little-router.git#bug/persist-query-dist",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1",
"serve-favicon": "^2.5.0",
"topojson-client": "^3.0.0",
"unfetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.24.0",
"babel-loader": "^8.3.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"css-loader": "^6.10.0",
"eslint": "^5.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"jest": "^23.4.1",
"patch-package": "^5.1.1",
"prettier": "^1.18.2",
"react-test-renderer": "^19.1.1",
"sass": "^1.77.2",
"sass-embedded": "^1.77.2",
"sass-loader": "^13.3.2",
"style-loader": "^4.0.0",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4"
}
}