-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.92 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
{
"name": "uebelacker.ch",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"tailwindcss --input ./styles/input.css --output ./styles/output.css --watch\"",
"build": "tailwindcss ./styles/input.css --output ./styles/output.css && next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"blog:update": "node bin/update-blog.mjs",
"sitemap:update": "node bin/update-sitemap.mjs"
},
"dependencies": {
"@fontsource/fira-code": "^5.0.16",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.1.0",
"axios": "^1.7.4",
"flat": "5",
"form-data": "^4.0.0",
"formik": "^2.4.5",
"mailgun.js": "^9.3.0",
"next": "14.2.10",
"react": "18.3.1",
"react-cookie-consent": "^9.0.0",
"react-dom": "18.2.0",
"react-google-recaptcha-v3": "^1.10.1",
"react-icons": "^4.12.0",
"react-intl": "^6.6.5",
"react-lazyload": "^3.2.0",
"react-remark": "^2.1.0",
"react-scroll": "^1.9.0",
"react-typist-component": "^1.0.5",
"yup": "^1.3.2"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@tailwindcss/typography": "^0.5.12",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"autoprefixer": "^10.4.18",
"concurrently": "^8.2.2",
"eslint": "8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "14.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^22.1.0",
"postcss": "^8.4.38",
"postcss-import": "^15.1.0",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3"
}
}