forked from ChurchCRM/CRM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 5.79 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "churchcrm",
"version": "5.10.0",
"description": "Free Church CRM Software",
"repository": {
"type": "git",
"url": "https://github.com/ChurchCRM/CRM.git"
},
"keywords": [
"Church",
"CRM",
"LAMP",
"Free"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ChurchCRM/CRM/issues"
},
"homepage": "https://churchcrm.io",
"scripts": {
"clean": "rm -rf node_modules/ src/vendor/ src/skin/external",
"preinstall": "grunt clean",
"build:frontend": "npm run build:js",
"build:js": "run-p build:js:*",
"build:js:legacy": "grunt curl-dir && grunt copy && grunt sass && grunt lineending && grunt patchDataTablesCSS",
"build:js:react": "webpack",
"build:php": "run-s composer-install",
"build": "run-p build:php build:frontend",
"audit": "npm audit fix --only=prod --audit-level=high",
"predeploy-generatesignatures": "grunt generateSignatures",
"deploy": "run-s build predeploy-generatesignatures",
"clean-deploy": "run-s preinstall deploy",
"postinstall": "grunt genLocaleJSFiles",
"locale-gen": "locale/update-locale.sh",
"locale-download": "grunt updateFromPOeditor && grunt genLocaleJSFiles && npm run locale-audit",
"locale-audit": "grunt exec:downloadPOEditorStats && grunt genLocaleAudit",
"update-signatures": "grunt generateSignatures",
"package": "npm run deploy && rm -rf src/propel src/composer.lock && grunt compress",
"composer-install": "cd src/ && composer validate --no-check-publish && composer install --no-dev && cd .. && grunt lineending",
"docker-dev-start": "cp docker/Config.php src/Include/Config.php && docker compose -f docker/docker-compose.dev-php8-apache.yaml up -d --build",
"docker-dev-login-web": "docker compose -f docker/docker-compose.dev-php8-apache.yaml exec webserver bash",
"docker-dev-login-db": "docker compose -f docker/docker-compose.dev-php8-apache.yaml exec database bash",
"docker-dev-logs": "docker compose -f docker/docker-compose.dev-php8-apache.yaml logs -f --tail=10",
"docker-dev-stop": "docker compose -f docker/docker-compose.dev-php8-apache.yaml stop",
"ci-docker-test-start": "cp docker/Config.php src/Include/Config.php && docker compose -f docker/docker-compose.test-php8-apache.yaml -f docker/docker-compose.test-php8-apache.gh-actions.yaml up -d --build",
"ci-docker-test-down": "docker compose -f docker/docker-compose.test-php8-apache.yaml -f docker/docker-compose.test-php8-apache.gh-actions.yaml down -v",
"docker-test-start": "cp docker/Config.php src/Include/Config.php && docker compose -f docker/docker-compose.test-php8-apache.yaml up -d --build",
"docker-test-down": "docker compose -f docker/docker-compose.test-php8-apache.yaml down -v",
"docker-test-stop": "docker compose -f docker/docker-compose.test-php8-apache.yaml stop",
"docker-test-restart": "npm run docker-test-down && npm run docker-test-start",
"docker-test-login-web": "docker compose -f docker/docker-compose.test-php8-apache.yaml exec webserver bash",
"docker-test-login-db": "docker compose -f docker/docker-compose.test-php8-apache.yaml exec database bash",
"docker-test-logs": "docker compose -f docker/docker-compose.test-php8-apache.yaml logs -f --tail=10",
"test": "cp docker/cypress.config.ts cypress.config.ts && node_modules/cypress/bin/cypress run --e2e",
"test-ui": "cp docker/cypress.config.ts cypress.config.ts && node_modules/cypress/bin/cypress open --e2e --browser chrome",
"test-via-demo": "cp demo/cypress.config.ts cypress.config.ts && node_modules/cypress/bin/cypress run"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.1",
"admin-lte": "3.2.0",
"bootbox": "^6.0.0",
"bootstrap": "^4.6.2",
"bootstrap-datepicker": "^1.10.0",
"bootstrap-notify": "^3.1.3",
"bootstrap-show-password": "^1.3.0",
"bootstrap-toggle": "^2.2.2",
"bootstrap-validator": "^0.11.9",
"chart.js": "^4.4.3",
"ckeditor4": "^4.24.0",
"daterangepicker": "^3.1.0",
"flag-icons": "^7.2.2",
"fullcalendar": "^6.1.14",
"i18n": "^0.15.1",
"i18next": "^23.11.5",
"icheck-bootstrap": "^3.0.1",
"inputmask": "^5.0.8",
"jquery": "^3.7.1",
"jquery-photo-uploader": "^1.0.13",
"jquery-steps": "^1.1.0",
"jquery-validation": "^1.19.5",
"pace-js": "^1.2.4",
"react-bootstrap": "^2.10.2",
"react-datepicker": "^6.9.0",
"react-select": "^5.7.7",
"select2": "^4.0.13"
},
"devDependencies": {
"@types/jquery": "^3.5.30",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.0",
"babel-preset-react": "^6.24.1",
"grunt": "^1.6.1",
"grunt-cli": "^1.5.0",
"grunt-confirm": "^1.0.8",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-curl": "^2.5.1",
"grunt-exec": "^3.0.0",
"grunt-git": "^1.1.1",
"grunt-http": "^2.3.3",
"grunt-lineending": "^1.0.0",
"grunt-sass": "^3.1.0",
"i18next-conv": "^15.0.0",
"i18next-parser": "^8.13.0",
"node-sha1": "^1.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"sass": "^1.77.0",
"tar": "^7.1.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.0.0"
},
"optionalDependencies": {
"cy-verify-downloads": "^0.2.4",
"cypress": "^13.9.0",
"grunt-poeditor-gd": "^0.2.1"
}
}