-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.25 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.25 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
74
75
76
77
78
79
{
"name": "root",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@heroicons/react": "^2.2.0",
"@mui/material": "^6.1.2",
"aos": "^2.3.4",
"axios": "^1.7.8",
"classnames": "^2.5.1",
"framer-motion": "^11.11.1",
"lottie-react": "^2.4.0",
"next": "^14.2.14",
"react": "^18",
"react-countup": "^6.5.3",
"react-dom": "^18",
"react-icons": "^5.5.0",
"react-intersection-observer": "^9.13.1",
"react-lazy-load-image-component": "^1.6.2",
"react-multi-carousel": "^2.8.5",
"react-scroll": "^1.9.0",
"react-tsparticles": "^2.9.3",
"react-visibility-sensor": "^5.1.1",
"styled-components": "^6.1.13",
"tsparticles": "^2.9.3",
"watch": "^1.0.2"
},
"devDependencies": {
"@types/aos": "^3.0.7",
"@types/eslint": "^9.6.0",
"@types/node": "^20",
"@types/react": "^18.2.7",
"@types/react-dom": "^18",
"@types/react-lazy-load-image-component": "^1.6.4",
"@types/react-scroll": "^1.8.10",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"autoprefixer": "^10.4.20",
"eslint": "8.57.0",
"eslint-config-next": "14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "latest",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-sort-keys": "^2.3.5",
"eslint-plugin-tailwindcss": "^3.17.4",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.4",
"typescript": "^5"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix"
]
},
"engines": {
"node": "20.x"
},
"packageManager": "yarn@4.7.0"
}