-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.1 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
105
106
107
108
{
"name": "faith-dashboard",
"version": "5.0.0",
"private": true,
"engines": {
"node": "^18.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"preview": "next start",
"test": "jest",
"coverage": "jest --coverage",
"lint": "tsc --noEmit; eslint 'components/**/*.ts' 'app/**/*.tsx' 'app/**/*.ts' '__tests__/**/*.ts' 'utilities/**/*.ts'",
"prettier": "prettier -w components/**/*.ts styles __tests__/**/*.ts utilities --ignore-path components/databaseSchema.types.ts",
"generate-database-types": "supabase gen types typescript --local > components/databaseSchema.types.ts",
"screenshot-social-preview": "tsx utilities/screenshot-social-preview.ts"
},
"_moduleAliases": {
"@app": "app",
"@components": "components",
"@public": "public",
"@styles": "styles",
"@tests": "__tests__"
},
"cacheDirectories": [
".next/cache"
],
"dependencies": {
"@fontsource/lato": "^5.0.21",
"@fontsource/merriweather": "^5.0.13",
"@hello-pangea/dnd": "^16.6.0",
"@marsidev/react-turnstile": "^0.7.1",
"@supabase/ssr": "^0.4.0",
"@supabase/supabase-js": "^2.44.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"deep-object-diff": "^1.1.9",
"goatcounter-js": "1.0.0",
"lodash-es": "^4.17.21",
"next": "^14.2.4",
"next-pwa": "^5.6.0",
"node-fetch": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"uuid": "^10.0.0",
"workbox-window": "^7.1.0",
"xml2js": "^0.6.2",
"youversion-suggest": "^2.2.0"
},
"browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@next/env": "^14.2.4",
"@testing-library/dom": "^10.2.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/lodash-es": "^4.17.12",
"@types/node-fetch": "^2.6.11",
"@types/puppeteer": "^5.4.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/testing-library__jest-dom": "^5.14.9",
"@types/uuid": "^10.0.0",
"@types/workbox-window": "^4.3.4",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"encoding": "^0.1.13",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.4",
"eslint-plugin-jest": "^28.6.0",
"glob": "^10.4.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-preview": "^0.3.1",
"module-alias": "^2.2.3",
"parse-multipart-data": "^1.5.0",
"prettier": "^3.3.2",
"puppeteer": "^22.12.1",
"sass": "^1.77.6",
"sharp": "^0.33.4",
"supabase": "^1.178.2",
"ts-node": "^10.9.2",
"tsx": "^4.15.7",
"typescript": "^5.5.2"
},
"pnpm": {
"overrides": {
"got@<11.8.5": ">=11.8.5"
}
}
}