-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.18 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.18 KB
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
{
"name": "lesson-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 3501",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "npx eslint --fix \"src/**/*.{ts,tsx,js,jsx}\"",
"analyze": "ANALYZE=true next build",
"analyze:server": "ANALYZE=true BUNDLE_ANALYZE=server next build",
"analyze:browser": "ANALYZE=true BUNDLE_ANALYZE=browser next build",
"postinstall": "copyfiles -a -f node_modules/@churchapps/apphelper/public/locales/** public/apphelper/locales && copyfiles -a -f node_modules/@churchapps/apphelper/public/css/** public/apphelper/css"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@churchapps/apphelper": "0.6.20",
"@churchapps/apphelper-login": "0.6.19",
"@churchapps/apphelper-markdown": "0.6.18",
"@churchapps/helpers": "1.2.31",
"@mui/icons-material": "^7.3.1",
"@mui/lab": "^7.0.0-beta.16",
"@mui/material": "^7.3.1",
"@oramacloud/client": "^2.1.4",
"@sentry/nextjs": "^10.27.0",
"@stripe/react-stripe-js": "^3.7.0",
"@stripe/stripe-js": "^7.5.0",
"@types/react-dom": "^19.2.3",
"axios": "^1.10.0",
"cropperjs": "^1.6.2",
"date-fns": "^4.1.0",
"next": "^16.0.8",
"next-sitemap": "^4.2.3",
"react": "^19.2.1",
"react-activity": "^2.1.3",
"react-cookie": "^8.0.1",
"react-cropper": "^2.3.3",
"react-dom": "^19.2.1",
"react-ga4": "^2.1.0",
"react-lite-youtube-embed": "^2.5.1",
"react-router-dom": "^7.8.1",
"react-simple-maps": "^4.0.0-beta.6",
"react-to-print": "^3.1.1",
"react-tooltip": "^5.29.1",
"react-vimeo": "^2.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.3.4",
"@playwright/test": "^1.54.1",
"@types/node": "^24.0.8",
"@types/react": "^19.2.7",
"@types/react-simple-maps": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"copyfiles": "^2.4.1",
"eslint": "^9.30.0",
"eslint-config-next": "^15.3.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "^4.1.4",
"typescript": "^5.8.3"
}
}