-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.18 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
{
"name": "satellite-tracker",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"coverage": "vitest run --coverage",
"start": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0 --fix",
"lint:watch": "npx nodemon -x npm run lint:fix --ext js,jsx,json",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"axios": "^1.7.7",
"cesium": "^1.123.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"resium": "^1.18.3",
"satellite.js": "^5.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.7.1",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"jsdom": "^25.0.1",
"vite": "^5.4.11",
"vite-plugin-cesium": "^1.2.23",
"vitest": "^2.0.2"
}
}