-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.94 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
{
"name": "fischermatte.dev",
"version": "1.5.6",
"license": "WTFPL",
"private": true,
"scripts": {
"postinstall": "git config core.hooksPath ./.git-hooks",
"lint": "next lint",
"dev": "next dev --turbopack",
"prebuild": "npm run generate:sitemap",
"build": "next build",
"start": "next start -p 3001",
"test": "jest",
"format": "prettier --write .",
"ci": "npm run lint && npm run test && npm run build",
"generate:sitemap": "node _scripts/generate-sitemap.js"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@supabase/supabase-js": "^2.46.1",
"@tailwindcss/forms": "^0.5.9",
"next": "15.0.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"rxjs": "^7.8.1",
"typewriter-effect": "^2.21.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.7",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"eslint": "^9",
"eslint-config-next": "15.0.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"faunadb": "^4.8.1",
"globby": "^14.0.2",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"tailwindcss": "^3.4.14",
"ts-jest": "^29.2.5",
"tsarch": "^5.4.0",
"typescript": "5.6.3"
},
"lint-staged": {
"*.+(js|ts|tsx|html|css|json)": [
"prettier --write"
],
"*.+(js|ts|tsx|yml|json)": [
"eslint --cache --fix"
]
},
"overrides": {
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1"
}
}