forked from jeyoder/StuffInSpace
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "stuff-in-space",
"version": "1.0.0",
"description": "A real-time interactive WebGL visualisation of objects in Earth orbit",
"main": "dist/index.js",
"repository": "[email protected]:ajmas/ThingsInSpace.git",
"author": "Andre-John Mas <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.ts,.vue src",
"lint:fix": "eslint --fix --ext .js,.ts,.vue sr"
},
"dependencies": {
"axios": "^1.6.4",
"gl-matrix": "^3.4.3",
"luxon": "^3.4.4",
"satellite.js": "^5.0.0"
},
"devDependencies": {
"@types/luxon": "^3.3.8",
"@types/three": "^0.157.2",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@yushijinhun/three-minifier-rollup": "^0.4.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"rollup-plugin-visualizer": "^5.12.0",
"three": "^0.157.0",
"typescript": "^5.2.2",
"vite": "^5.0.11"
}
}