-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.53 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
{
"name": "trackthatsatellite.com",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "(rm docs/*.js && rm -r docs/*.svg) || true",
"build-dev": "npm run clean && webpack -d --mode development",
"build-prod": "npm run clean && webpack -p --mode production",
"build": "npm run build-prod && cp src/static/404.html docs && cp -r src/data docs",
"start": "webpack-dev-server --hot --mode development",
"dev": "npm start",
"test": "jest",
"bump": "! npm outdated && npm update && npm audit fix && npm test || echo 'Package up to date'",
"tle-update": "./src/scripts/update-celestrak-cache.sh"
},
"author": "David Calhoun",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@hot-loader/react-dom": "^16.13.0",
"@storybook/addon-docs": "^5.3.21",
"@storybook/react": "^5.3.21",
"@testing-library/dom": "^7.24.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.6.0",
"eslint": "^7.9.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.4.1",
"html-webpack-template": "^6.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"postcss-custom-media": "^7.0.8",
"postcss-loader": "^3.0.0",
"prettier": "^2.1.2",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.1",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/lab": "^4.0.0-alpha.56",
"date-fns": "^2.16.1",
"mapbox-gl": "^1.12.0",
"postcss-global-import": "^1.0.6",
"ramda": "^0.27.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-visible-satellites": "^2.0.3",
"react-hot-loader": "^4.12.21",
"react-mapbox-gl": "^4.8.6",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"suncalc": "^1.8.0",
"tle.js": "^4.1.1"
},
"jest": {
"moduleNameMapper": {
"\\.(css)$": "identity-obj-proxy"
}
}
}