-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 736 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 736 Bytes
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
{
"name": "hamzas-house-portfolio",
"version": "4.7.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "vite build",
"preview": "vite preview --host 127.0.0.1",
"check:syntax": "node scripts/check-syntax.mjs",
"check:content": "node scripts/check-content.mjs",
"check": "npm run check:syntax && npm run check:content",
"lint": "eslint js/*.js scripts/*.mjs",
"format": "prettier --write ."
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.3",
"@vitejs/plugin-basic-ssl": "^2.3.0",
"eslint": "^10.2.1",
"prettier": "^3.8.3",
"tailwindcss": "^4.3.3",
"vite": "^8.0.10"
},
"dependencies": {
"three": "^0.184.0"
}
}