Files
purple-explorer/package.json
T

56 lines
2.1 KiB
JSON
Raw Normal View History

2019-05-27 10:33:22 -07:00
{
"name": "explorer",
"version": "1.103.0",
2019-05-27 10:33:22 -07:00
"private": true,
"scripts": {
"start": "node --stack-size=10000 ./bin/cluster",
2022-04-23 11:28:32 -06:00
"stop": "node ./scripts/stop_explorer.js",
"start-instance": "npm run prestart && node --stack-size=10000 ./bin/cluster 1",
2023-05-27 21:45:03 -06:00
"start-forever": "npm run prestart \"forever production\"",
"stop-forever": "forever stop \"explorer\"",
"reload-forever": "forever restart \"explorer\"",
2023-05-27 21:45:03 -06:00
"start-pm2": "npm run prestart \"pm2 production\"",
"start-pm2-debug": "npm run prestart \"pm2 development\" && pm2 logs",
"stop-pm2": "pm2 stop explorer",
"reload-pm2": "pm2 reload explorer",
2022-04-23 11:28:32 -06:00
"test": "node ./node_modules/jasmine/bin/jasmine.js test/*Spec.js",
"prestart": "node ./scripts/prestart.js",
"sync-blocks": "node ./scripts/sync.js index update",
"sync-markets": "node ./scripts/sync.js market",
"sync-peers": "node ./scripts/sync.js peers",
"sync-masternodes": "node ./scripts/sync.js masternodes",
"check-blocks": "node ./scripts/sync.js index check",
"reindex": "node ./scripts/sync.js index reindex",
"reindex-rich": "node ./scripts/sync.js index reindex-rich",
"reindex-txcount": "node ./scripts/sync.js index reindex-txcount",
"reindex-last": "node ./scripts/sync.js index reindex-last",
"create-backup": "node ./scripts/create_backup.js",
"restore-backup": "node ./scripts/restore_backup.js",
2022-05-01 15:00:34 -06:00
"delete-database": "node ./scripts/delete_database.js",
"update-explorer": "node ./scripts/update_explorer.js",
"benchmark": "node ./scripts/benchmark.js"
2019-05-27 10:33:22 -07:00
},
"dependencies": {
2022-06-12 19:36:17 -06:00
"async": "^3.2.4",
2024-09-19 19:53:10 -06:00
"bad-words": "^4.0.0",
2022-06-12 19:36:17 -06:00
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"debug": ">=4.3.4",
2025-04-06 22:49:18 -06:00
"express": "^4.21.2",
"intl": "^1.2.5",
2022-06-12 19:36:17 -06:00
"jsonminify": "^0.4.2",
2023-09-17 17:40:22 -06:00
"mongodb": "^6.1.0",
2023-12-27 17:08:24 -07:00
"mongoose": "^8.0.3",
"morgan": ">=1.10.0",
2022-06-12 19:36:17 -06:00
"postman-request": "^2.88.1-postman.31",
"pug": "~3.0.2",
"qr-image": "^3.2.0",
2022-06-12 19:36:17 -06:00
"sass": "^1.52.3",
"serve-favicon": "^2.5.0"
2019-05-27 10:33:22 -07:00
},
"devDependencies": {
2022-06-12 19:36:17 -06:00
"forever": "^4.0.3",
"jasmine": ">=4.2.0",
"pm2": "^5.2.0"
2019-05-27 10:33:22 -07:00
}
2019-06-07 20:05:28 -06:00
}