-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.42 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
82
83
84
{
"scripts": {
"dev": "next -p 3333",
"build": "next build",
"export": "next export",
"deploy": "npm run build && npm run export",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@ariakit/react": "^0.3.3",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@google/markerclustererplus": "^5.1.3",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.10",
"@mui/utils": "^5.10.9",
"@paypal/react-paypal-js": "^8.1.3",
"aws-sdk": "^2.1363.0",
"chart.js": "^4.0.0",
"chartjs-plugin-datalabels": "^2.2.0",
"classnames": "^2.3.2",
"cloudinary-react": "^1.7.0",
"contentlayer": "^0.3.4",
"d3-scale": "^3.3.0",
"date-fns": "^2.30.0",
"downloadjs": "^1.4.7",
"file-saver": "^2.0.5",
"frontmatter-markdown-loader": "^2.0.0",
"gray-matter": "^4.0.3",
"html-react-parser": "^3.0.4",
"jszip": "^3.10.1",
"jszip-utils": "^0.1.0",
"markdown-it": "^12.3.2",
"markdown-to-txt": "^2.0.1",
"moment": "^2.29.1",
"next": "^13.4.1",
"next-contentlayer": "^0.3.4",
"next-seo": "^4.26.0",
"papaparse": "^5.3.1",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-aria": "^3.25.0",
"react-chartjs-2": "^5.2.0",
"react-compound-slider": "^3.4.0",
"react-dom": "^18.2.0",
"react-ga": "^3.3.0",
"react-markdown": "^8.0.7",
"react-tooltip": "^4.5.0",
"sanitize-html": "^2.4.0",
"sass": "^1.64.2",
"styled-components": "^5.3.6",
"webpack": "^4.46.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@netlify/plugin-nextjs": "^4.40.1",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"@types/styled-components": "^5.1.26",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"typescript": "^5.0.3"
},
"babel": {
"presets": [
"next/babel"
],
"plugins": [
"babel-plugin-styled-components"
]
}
}