-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 3.01 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
{
"name": "@churchapps/apphelper",
"version": "0.3.09",
"description": "Library of helper functions for React and NextJS ChurchApps",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"copy-css": "copyfiles -f src/components/markdownEditor/editor.css dist/components/markdownEditor",
"copy-icons": "copyfiles -f src/components/markdownEditor/images/icons/* dist/components/markdownEditor/images/icons",
"copy-emojis": "copyfiles -f src/components/markdownEditor/images/emoji/* dist/components/markdownEditor/images/emoji",
"copy-languages": "copyfiles -a public/** dist",
"copy-assets": "npm-run-all copy-css copy-icons copy-emojis copy-languages",
"link": "link",
"tsc": "tsc",
"prepare": "npm run build",
"build": "npm-run-all clean tsc copy-assets",
"updateLink": "npm-run-all clean tsc && npm rm @churchapps/apphelper -g && npm link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LiveChurchSolutions/AppHelper.git"
},
"keywords": [
"ChurchApps"
],
"author": "ChurchApps.org",
"license": "MIT",
"bugs": {
"url": "https://github.com/LiveChurchSolutions/AppHelper/issues"
},
"homepage": "https://github.com/LiveChurchSolutions/AppHelper#readme",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.15.0"
},
"dependencies": {
"@churchapps/helpers": "^1.0.32",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@lexical/code": "^0.12.0",
"@lexical/link": "^0.12.0",
"@lexical/list": "^0.12.0",
"@lexical/markdown": "^0.12.0",
"@lexical/react": "^0.12.0",
"@lexical/rich-text": "^0.12.0",
"@lexical/selection": "^0.12.0",
"@lexical/table": "^0.12.0",
"@lexical/utils": "^0.12.0",
"@mui/lab": "^5.0.0-alpha.142",
"@mui/material": "^5.14.7",
"@stripe/react-stripe-js": "^2.1.2",
"@stripe/stripe-js": "^2.1.1",
"axios": "^1.5.0",
"cropperjs": "^1.6.0",
"date-fns": "^2.30.0",
"flexsearch": "0.7.43",
"jwt-decode": "^3.1.2",
"lexical": "^0.12.0",
"marked": "15.0.6",
"material-symbols": "^0.11.0",
"mui-tel-input": "^4.0.1",
"react-activity": "^2.1.3",
"react-cookie": "^6.1.0",
"react-cropper": "^2.3.3",
"react-csv": "^2.2.2",
"react-ga4": "^2.1.0",
"react-google-charts": "^3.0.15",
"react-google-recaptcha": "^3.1.0",
"react-to-print": "^2.14.13",
"rrule": "^2.8.1",
"slug": "^8.2.3"
},
"devDependencies": {
"@types/node": "^20.5.9",
"@types/react": "^18.2.21",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "^18.2.7",
"@types/react-google-recaptcha": "^2.1.5",
"@types/slug": "^5.0.7",
"copyfiles": "^2.4.1",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.33.2",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.1",
"tslint": "^6.1.2",
"typescript": "^5.2.2"
}
}