-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.72 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
{
"name": "heavensat-web",
"version": "0.1.0",
"private": true,
"homepage": "https://1valdis.github.io/heavensat-web/",
"dependencies": {
"astronomy-engine": "^2.1.19",
"gl-matrix": "^3.4.3",
"luxon": "^3.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"satellite.js": "^5.0.0"
},
"type": "module",
"devDependencies": {
"@types/gl-matrix": "^3.2.0",
"@types/luxon": "^3.4.2",
"@types/node": "^18.14.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"@vitejs/plugin-react": "^4.3.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.57.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^4.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-sonarjs": "^1.0.3",
"gh-pages": "^6.1.1",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.3.2"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"deploy": "gh-pages -d dist"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}