-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.21 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.21 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
{
"name": "inctf-2026",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "next build --turbo",
"export": "next export",
"dev": "next dev --turbo",
"start": "next start -p 80",
"deploy": "next build --turbo && next start -p 80",
"dev-deploy": "next build --turbo && next start",
"build-export": "npm run build && npm run export",
"lint": "eslint ./ --ext .ts,.tsx,.js,.jsx",
"lint-fix": "eslint ./ --ext .ts,.tsx,.js,.jsx --fix",
"type-check": "tsc --noEmit --emitDeclarationOnly false"
},
"author": "aswinshenoy <aswinshenoy65@gmail.com>",
"license": "MIT",
"dependencies": {
"@emotion/core": "11.0.0",
"@emotion/react": "11.6.0",
"@emotion/styled": "11.3.0",
"@gsap/react": "^2.1.2",
"@next/third-parties": "^16.1.6",
"body-scroll-lock": "3.1.5",
"chart.js": "^4.3.0",
"chartjs-plugin-datalabels": "^2.0.0",
"d3-scale": "^4.0.2",
"framer-motion": "^10.18.0",
"gsap": "^3.14.2",
"isomorphic-fetch": "3.0.0",
"lodash": "^4.17.21",
"lucide-react": "^0.563.0",
"next": "^16.1.0",
"next-compose-plugins": "^2.2.0",
"next-optimized-images": "^2.0.2",
"next-video": "2.2.2",
"next-videos": "1.4.1",
"rc-tooltip": "^5.1.1",
"re-resizable": "6.9.9",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-chatbot-kit": "^2.0.1",
"react-countup": "4.3.3",
"react-dom": "^18.3.1",
"react-draggable": "4.4.3",
"react-hooks-global-state": "1.0.1",
"react-indiana-drag-scroll": "2.2.0",
"react-markdown": "^9.0.0",
"react-modal": "3.16.1",
"react-player": "2.6.2",
"react-select": "5.7.3",
"react-simple-maps": "^3.0.0",
"react-string-replace": "^0.4.4",
"react-syntax-highlighter": "^15.6.1",
"react-tooltip": "^5.28.0",
"react-waypoint": "^10.1.0",
"remark-gfm": "^4.0.0",
"shortid": "^2.2.17",
"store2": "^2.14.4",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/hast": "^3.0.4",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"eslint-config-next": "^16.1.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
}
}