-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·37 lines (37 loc) · 1.1 KB
/
package.json
File metadata and controls
executable file
·37 lines (37 loc) · 1.1 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
{
"name": "aurelium",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "oxlint --deny correctness --deny suspicious --deny-warnings --import-plugin --react-plugin --jsx-a11y-plugin --promise-plugin . && tsc --noEmit",
"lint:fix": "oxlint --deny correctness --deny suspicious --import-plugin --react-plugin --jsx-a11y-plugin --promise-plugin --fix .",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"deps:check": "knip"
},
"dependencies": {
"framer-motion": "^12.38.0",
"gsap": "^3.14.2",
"lenis": "^1.3.21",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.6.0",
"react-intersection-observer": "^10.0.3"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"knip": "^6.1.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^8.0.3"
}
}