-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.11 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.11 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
{
"name": "codex-website",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://codexsit.github.io/",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"lint:fix": "eslint --fix .",
"style": "prettier --write {src,test}/**/* ./*.{json,*.json} !package-lock.json -u --no-error-on-unmatched-pattern",
"prepare": "husky install",
"deploy": "vite build && gh-pages -d dist"
},
"dependencies": {
"@fontsource/league-gothic": "^5.0.18",
"@fontsource/poppins": "^5.0.8",
"@vitejs/plugin-react": "^4.2.1",
"baffle": "^0.3.6",
"canvas": "^3.0.0",
"color-thief-react": "^2.1.0",
"framer-motion": "^11.5.4",
"gsap": "^3.12.5",
"lodash": "^4.17.21",
"lucide-react": "^0.469.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.6.5",
"react-parallax-tilt": "^1.7.268",
"react-router-dom": "^6.22.1",
"react-toastify": "^10.0.4",
"swiper": "^11.1.15",
"vite": "^5.1.0"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"gh-pages": "^6.1.1",
"husky": "^8.0.0",
"lint-staged": "^15.2.2",
"postcss-cli": "^11.0.0",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,html,css,json}": [
"prettier --write",
"eslint --fix src/",
"git add"
]
}
}