-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.17 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
{
"name": "iss-in-real-time",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm run vite:dev",
"build": "npm run vite:build",
"vite:build": "vite build --emptyOutDir",
"vite:dev": "vite",
"tsc": "tsc --pretty",
"lint": "eslint . --color",
"test": "jest",
"test:all": "npm run lint && npm run tsc && npm run build && npm run test",
"docker:preview": "docker compose -f docker-compose.yml up -d",
"docker:preview:rebuild": "docker compose -f docker-compose.yml build",
"docker:preview:rebuild:nocache": "docker compose -f docker-compose.yml build --no-cache"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cesium": "^1.124.0",
"cors": "^2.8.5",
"geojson": "^0.5.0",
"lodash": "^4.17.21",
"ol": "^10.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^7.0.2",
"react-router-dom": "^7.0.2",
"react-youtube": "^10.1.0",
"resium": "^1.18.3",
"satellite.js": "^5.0.0",
"tle.js": "^4.9.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@types/cors": "^2.8.17",
"@types/css-modules": "^1.0.5",
"@types/geojson": "^7946.0.14",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-router-dom": "^5.3.3",
"@types/youtube-player": "^5.5.11",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"concurrently": "^9.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.4.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.7.2",
"vite": "^6.0.1",
"vite-plugin-cesium": "^1.2.23",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-pages": "^0.32.4",
"wait-on": "^8.0.1"
}
}