forked from aymanaboghonim/elmentor-landing-page-clean
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.18 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.18 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
{
"name": "elmentor-landing-page-clean",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Clean, maintainable landing page for Elmentor/DevOps Visions community",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write .",
"serve": "vite preview --port 3000",
"typecheck": "tsc --noEmit",
"deploy": "powershell -ExecutionPolicy Bypass -File ./scripts/deploy.ps1",
"deploy:gh-pages": "gh-pages -d dist"
},
"dependencies": {
"framer-motion": "^10.16.0",
"lucide-react": "^0.263.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.6.2"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"gh-pages": "^6.3.0",
"prettier": "^3.0.0",
"typescript": "~5.8.3",
"vite": "^6.3.5"
}
}