-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 789 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "cavingcrew-database-scripts",
"version": "1.0.0",
"description": "Scripts to manage MySQL views for CavingCrew",
"main": "index.js",
"scripts": {
"pull": "node scripts/pullViews.js",
"push": "node scripts/pushViews.js",
"mysql": "mysql -u root --password=`cat ~/bitnami_application_password` --database=jtl_cavingcrew_com",
"update-cache": "DB_HOST=127.0.0.1 DB_NAME=jtl_cavingcrew_com DB_USER=root DB_PASS=`cat ~/bitnami_application_password` BATCH_SIZE=10 MAX_AGE_DAYS=7 bash scripts/update_member_caches.sh",
"deploy-cron": "bash scripts/deploy_remote_cron.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"private": true,
"dependencies": {
"dotenv": "^16.4.5",
"mysql2": "^3.11.3",
"sql-formatter": "^15.4.2",
"ssh2": "^1.16.0"
}
}