From 00d9a2b1cc1d0db2290970a8a205cb8f52677a6e Mon Sep 17 00:00:00 2001 From: sairajzero Date: Sat, 16 Oct 2021 00:19:48 +0530 Subject: [PATCH] Adding package.json --- LICENSE | 2 +- package.json | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 package.json diff --git a/LICENSE b/LICENSE index 9e1baf1..b366792 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 sairajzero +Copyright (c) 2021 Ranchimall Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/package.json b/package.json new file mode 100644 index 0000000..4cfb201 --- /dev/null +++ b/package.json @@ -0,0 +1,43 @@ +{ + "name": "flo-exchange-market", + "version": "1.0.0", + "description": "Central Exchange market for FLO", + "main": "src/main.js", + "dependencies": { + "cookie-parser": "^1.4.5", + "express": "^4.17.1", + "express-session": "^1.17.2", + "mysql": "^2.18.1", + "node-fetch": "^2.6.1", + "ws": "^8.2.3" + }, + "devDependencies": {}, + "scripts": { + "postinstall": "node setup/post-install.js", + "help": "node setup/help.js", + "setup": "node setup/post-install.js", + "configure": "node setup/configure-settings.js", + "reset-password": "node setup/reset-password.js", + "create-schema": "node setup/create-schema.js", + "configure-backup": "node setup/configure-backup.js", + "create-backup-schema":"node setup/create-backup-schema.js", + "backup":"node src/backup/storage.js", + "start": "node start.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ranchimall/exchange-market.git" + }, + "keywords": [ + "exchange-market", + "FLO", + "blockchain", + "Ranchimall" + ], + "author": "Sai Raj", + "license": "MIT", + "bugs": { + "url": "https://github.com/ranchimall/exchange-market/issues" + }, + "homepage": "https://github.com/ranchimall/exchange-market#readme" +}