-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathpackage.json
84 lines (84 loc) · 2.86 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
{
"name": "SatVis",
"version": "1.0.0",
"description": "Satellite orbit visualization with CesiumJS",
"scripts": {
"build": "webpack --config webpack/webpack.prod.js",
"build:dev": "webpack --config webpack/webpack.config.js",
"build:stats": "webpack --config webpack/webpack.stats.js",
"clean": "mkdirp dist & rimraf dist/*",
"lint": "eslint --ext js,vue src",
"lint:fix": "eslint --ext js,vue --fix src",
"serve": "npm run build && http-server -c-1 dist",
"serve:dev": "npm run build:dev && http-server -c-1 dist",
"serve:stats": "npm run build:stats && http-server -c-1 dist",
"start": "webpack serve --progress --config webpack/webpack.config.js",
"start:anyhost": "webpack serve --progress --config webpack/webpack.config.js --host 0.0.0.0",
"update-tle": "node data/tle/update-tle.js",
"update-custom-data": "npm run update-tle && bash data/custom/update-custom-data.sh"
},
"author": "Florian Mauracher",
"private": true,
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@primevue/themes": "^4.2.5",
"@sentry/browser": "^8.48.0",
"cesium": "^1.125.0",
"cesium-sensor-volumes": "github:Flowm/cesium-sensor-volumes#1.102.0",
"dayjs": "^1.11.13",
"pinia": "^2.3.0",
"primevue": "^4.2.5",
"satellite.js": "^5.0.0",
"vue": "^3.5.13",
"vue-multiselect": "^3.1.0",
"vue-router": "^4.5.0",
"vue-toastification": "^2.0.0-rc.5",
"workbox-window": "^7.3.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.26.5",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"cssnano": "^7.0.6",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-webpack": "^0.13.10",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "^9.32.0",
"html-webpack-plugin": "^5.6.3",
"http-server": "^14.1.1",
"mini-css-extract-plugin": "^2.9.2",
"mkdirp": "^3.0.1",
"postcss-loader": "^8.1.1",
"rimraf": "^5.0.9",
"sass": "^1.83.3",
"sass-loader": "^16.0.4",
"script-loader": "^0.7.2",
"style-loader": "^4.0.0",
"typescript": "^5.7.3",
"url-loader": "^4.1.1",
"vue-loader": "^17.4.2",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1",
"webpack-strip-pragma-loader": "^1.0.1",
"workbox-webpack-plugin": "^7.3.0"
},
"browserslist": [
"> 1%",
"not ie 11",
"not op_mini all",
"not UCAndroid >1"
]
}