-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.69 KB
/
package.json
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
{
"name": "reccy",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=14.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint:fix": "eslint --ext .ts,.tsx,.js,.jsx --ignore-path ./.gitignore",
"lint:format": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,json}\" ",
"lint": "yarn lint:format && yarn lint:fix ",
"prepare": "husky install"
},
"dependencies": {
"axios": "^1.2.2",
"framer-motion": "^10.12.2",
"gsap": "^3.11.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-intersection-observer": "^9.4.3",
"react-router-dom": "^6.6.1",
"sass": "^1.57.1"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^3.0.0",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.2",
"prettier": "^2.8.1",
"vite": "^4.0.0"
},
"resolutions": {
"webpack": "^5"
}
}