-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.21 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "aireadi.org",
"version": "3.5.0",
"private": true,
"typings": "index.d.ts",
"scripts": {
"dev": "next dev",
"build": "next build && rm -rf ./.next/cache",
"start": "next start",
"lint": "eslint --ignore-path .gitignore \"./**/*.+(ts|js|tsx)\"",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"test": "jest",
"format": "prettier --ignore-path .gitignore \"./**/*.+(ts|js|tsx)\" --write",
"format:write": "prettier --write .",
"format:check": "prettier -c .",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"commit": "cz",
"semantic-release": "semantic-release"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.11",
"@chakra-ui/react": "^2.3.7",
"@chakra-ui/skip-nav": "^2.0.11",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@headlessui/react": "^1.7.18",
"@iconify/react": "^4.1.0",
"@sendgrid/mail": "^7.7.0",
"add-to-calendar-button-react": "^2.6.8",
"clsx": "^1.2.1",
"d3": "^7.9.0",
"dayjs": "^1.11.9",
"formik": "^2.2.9",
"framer-motion": "^8.0.2",
"gray-matter": "^4.0.3",
"html-react-parser": "^3.0.4",
"next": "^13.0.2",
"plaiceholder": "^2.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
"react-lottie-player": "^1.5.0",
"react-toastify": "^9.1.1",
"react-use": "^17.5.0",
"rehype-document": "7.0.3",
"rehype-external-links": "3.0.0",
"rehype-format": "5.0.0",
"rehype-highlight": "7.0.0",
"rehype-raw": "7.0.0",
"rehype-sanitize": "6.0.0",
"rehype-stringify": "10.0.0",
"remark": "15.0.1",
"remark-gfm": "^4.0.0",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.0",
"sharp": "^0.31.3",
"sib-api-v3-sdk": "^8.4.2",
"tailwind-merge": "^1.7.0",
"unified": "11.0.4",
"words-count": "^2.0.2"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@fairdataihub/config": "^2.2.1",
"@svgr/webpack": "^6.5.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.8",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/d3": "^7.4.3",
"@types/jest": "^29.2.3",
"@types/mocha": "^10.0.1",
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.26.0",
"eslint-config-next": "^13.0.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^27.5.1",
"megasanjay-devmoji": "^1.2.1",
"next-router-mock": "^0.7.4",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.18",
"prettier": "3.3.0",
"prettier-plugin-tailwindcss": "0.6.1",
"run-script-os": "^1.1.6",
"tailwindcss": "^3.2.2",
"tailwindcss-debug-screens": "^2.2.1",
"typescript": "^4.8.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}