forked from SoumyaEXE/3d-Solar-System-ThreeJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.25 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "3d-solar-system-threejs",
"version": "1.0.0",
"description": "An interactive 3D Solar System visualization built with Three.js, featuring real-time NASA data integration and educational content for exploring space.",
"type": "module",
"main": "src/main.js",
"keywords": [
"threejs",
"solar-system",
"3d-visualization",
"nasa-api",
"space",
"astronomy",
"education",
"vite",
"webgl"
],
"author": "3D Solar System Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hkevin01/3d-Solar-System-ThreeJS-Fork.git"
},
"bugs": {
"url": "https://github.com/hkevin01/3d-Solar-System-ThreeJS-Fork/issues"
},
"homepage": "https://github.com/hkevin01/3d-Solar-System-ThreeJS-Fork#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"lint:check": "eslint src --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "cypress run",
"test:e2e:open": "cypress open",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist node_modules/.vite",
"prepare": "husky install",
"start": "npm run dev"
},
"dependencies": {
"three": "^0.177.0"
},
"devDependencies": {
"vite": "^7.0.0",
"@vitejs/plugin-legacy": "^7.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.3.3",
"vitest": "^2.1.5",
"@vitest/ui": "^2.1.5",
"@vitest/coverage-v8": "^2.1.5",
"cypress": "^13.15.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"typescript": "^5.6.3"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.{json,css,md}": [
"prettier --write"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}