-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.81 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.81 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
{
"name": "satvis",
"version": "1.0.0",
"description": "Satellite orbit visualization with CesiumJS",
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite",
"preview": "vite preview",
"clean": "rimraf dist",
"type-check": "vue-tsc --noEmit",
"lint": "oxlint src && prettier --check src/**/*.{js,ts,vue} && vue-tsc",
"lint:fix": "oxlint --fix src && prettier --write src/**/*.{js,ts,vue}",
"serve": "npm run build && npm run preview",
"start": "vite",
"start:anyhost": "vite --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",
"deploy": "npm run build && cd worker && npm run deploy"
},
"author": "Florian Mauracher",
"private": true,
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/vue-fontawesome": "^3.2.0",
"@primeuix/themes": "^2.0.3",
"cesium": "^1.140.0",
"cesium-sensor-volumes": "github:Flowm/cesium-sensor-volumes#1.138.1",
"dayjs": "^1.11.20",
"pinia": "^3.0.4",
"posthog-js": "^1.369.0",
"primevue": "^4.5.5",
"satellite.js": "^7.0.0",
"vue": "^3.5.32",
"vue-multiselect": "^3.5.0",
"vue-router": "^5.0.4"
},
"devDependencies": {
"@vite-pwa/assets-generator": "^1.0.2",
"@vitejs/plugin-vue": "^6.0.6",
"oxlint": "^1.60.0",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-static-copy": "^4.0.1",
"vue-tsc": "^3.2.6"
},
"overrides": {
"serialize-javascript": "^7.0.3",
"vite-plugin-pwa": {
"vite": "$vite"
}
}
}