-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
81 lines (81 loc) · 2.31 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "iste_website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run start-apollo\" \"next dev\"",
"start-apollo": "nodemon apollo-server.mjs",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@apollo/client": "^3.10.8",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.5",
"@nextui-org/theme": "^2.2.9",
"@tsparticles/engine": "^3.5.0",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.5.0",
"@types/mdx": "^2.0.13",
"apollo-server": "^3.13.0",
"apollo-server-express": "^3.13.0",
"apollo-server-micro": "^3.13.0",
"clsx": "^2.1.1",
"concurrently": "^8.2.2",
"contentlayer": "^0.3.4",
"cors": "^2.8.5",
"express": "^4.19.2",
"framer-motion": "^11.3.24",
"graphql": "^16.9.0",
"graphql-tag": "^2.12.6",
"gray-matter": "^4.0.3",
"lottie-react": "^2.4.0",
"lottie-web": "^5.12.2",
"lucide-react": "^0.419.0",
"markdown-to-jsx": "^7.4.7",
"mongodb": "^6.8.0",
"mongoose": "^8.5.1",
"next": "^14.2.5",
"next-mdx-remote": "^5.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.0.1",
"react-router-dom": "^6.26.0",
"react-scrollbars-custom": "^4.1.1",
"react-slick": "^0.30.2",
"react-swipeable": "^7.0.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.13.2",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"simplex-noise": "^4.0.3",
"slick-carousel": "^1.8.1",
"swiper": "^11.1.5",
"tailwind-merge": "^2.5.0",
"tailwindcss-animate": "^1.0.7",
"usestate": "^1.1.3"
},
"devDependencies": {
"@types/accepts": "^1.3.7",
"@types/cors": "^2.8.17",
"@types/node": "^20",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-slick": "^0.23.13",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"markdown-loader": "^8.0.0",
"nodemon": "^3.1.4",
"postcss": "^8",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"remark-toc": "^9.0.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}