-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.65 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "training-simulator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky && husky install"
},
"dependencies": {
"@clerk/nextjs": "^5.1.6",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fullpage/react-fullpage": "^0.1.42",
"@headlessui/react": "^2.1.0",
"@heroicons/react": "^2.1.4",
"@iconify/react": "^5.0.1",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5.15.20",
"ai": "^3.2.5",
"autoprefixer": "^10.4.19",
"axios": "^1.7.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"headlessui": "^0.0.0",
"hume": "^0.7.2",
"lodash": "^4.17.21",
"lucide-react": "^0.396.0",
"mapbox-gl": "^3.4.0",
"mongodb": "^6.7.0",
"next": "14.2.4",
"notistack": "^3.0.1",
"react": "^18",
"react-dom": "^18",
"react-lazy-load-image-component": "^1.6.2",
"simplebar-react": "^3.2.6",
"slick-carousel": "^1.8.1",
"stylis-plugin-rtl": "^2.1.1",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"yet-another-react-lightbox": "^3.20.0"
},
"devDependencies": {
"@types/lodash": "^4.17.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"postcss": "^8",
"prettier": "3.3.2",
"tailwindcss": "^3.4.4",
"typescript": "^5"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{ts,tsx}": [
"prettier --write"
]
}
}