-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 2.24 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
{
"name": "inctfjr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "next build",
"build-ssg": "next build && next export",
"export": "next export",
"dev": "next",
"start": "next start -p 80",
"deploy": "next build && next start -p 80",
"dev-deploy": "next build && 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 <[email protected]>",
"license": "MIT",
"resolutions": {
"@emotion/utils": "^1.1.0",
"@emotion/sheet": "^1.1.0"
},
"dependencies": {
"@emotion/core": "11.0.0",
"@emotion/react": "11.6.0",
"@emotion/styled": "11.3.0",
"body-scroll-lock": "3.1.5",
"chart.js": "^4.3.0",
"chartjs-plugin-datalabels": "^2.0.0",
"d3-scale": "^4.0.2",
"eslint": "^8.40.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"framer-motion": "^10.10.0",
"isomorphic-fetch": "3.0.0",
"js-yaml-loader": "1.2.2",
"lodash": "4.17.20",
"next": "13.1.6",
"next-compose-plugins": "^2.2.0",
"next-offline": "^5.0.2",
"next-optimized-images": "2.6.1",
"next-videos": "1.4.0",
"rc-tooltip": "^5.1.1",
"re-resizable": "6.9.9",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-chatbot-kit": "^2.0.1",
"react-countup": "4.3.3",
"react-dom": "18.2.0",
"react-draggable": "4.4.3",
"react-hooks-global-state": "1.0.1",
"react-indiana-drag-scroll": "2.2.0",
"react-markdown": "5.0.3",
"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.4.4",
"react-tooltip": "^4.2.21",
"react-waypoint": "^10.1.0",
"remark-gfm": "1.0.0",
"shortid": "2.2.16",
"store2": "2.12.0"
},
"devDependencies": {
"@types/react": "^18.2.6",
"autoprefixer": "^10.3.6",
"eslint-config-next": "^13.4.2",
"eslint-plugin-unused-imports": "^2.0.0",
"postcss": "^8.3.8",
"tailwindcss": "^3.3.2",
"typescript": "^4.4.3"
}
}