{
	"name": "@klayr/faucet-plugin",
	"version": "0.4.2",
	"description": "A plugin for distributing testnet tokens from a newly developed blockchain application.",
	"author": "Klayr Labs <admin@klayr.xyz>, Lisk Foundation <admin@lisk.com>, lightcurve GmbH <admin@lightcurve.io>",
	"license": "Apache-2.0",
	"keywords": [
		"klayr",
		"blockchain",
		"faucet"
	],
	"homepage": "https://github.com/Klayrhq/klayr-sdk/tree/master/framework-plugins/faucet-plugin#readme",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/Klayrhq/klayr-sdk.git"
	},
	"bugs": {
		"url": "https://github.com/Klayrhq/klayr-sdk/issues"
	},
	"engines": {
		"node": ">=18.12.0 <=18",
		"npm": ">=8.1.0"
	},
	"files": [
		"/dist-node",
		"/build",
		"/public"
	],
	"main": "dist-node/index.js",
	"scripts": {
		"clean": "./scripts/clean.sh",
		"format": "prettier --write '**/*'",
		"lint": "eslint --ext .ts .",
		"lint:fix": "eslint --fix --ext .js,.ts .",
		"test": "jest --config=./test/unit/jest.config.js ",
		"test:coverage": "jest --config=./test/unit/jest.config.js  --coverage=true --coverage-reporters=text",
		"test:watch": "npm test -- --watch",
		"test:functional": "jest --config=./test/functional/jest.config.js --runInBand",
		"test:unit": "jest --config=./test/unit/jest.config.js --coverage=true --coverage-reporters=json --verbose",
		"test:ci": "jest --config=./test/unit/jest.config.js --coverage=true --coverage-reporters=json",
		"prebuild": "rm -r dist-node/* build/* || mkdir dist-node || true",
		"build": "npm run build:node && npm run build:web",
		"build:node": "tsc",
		"build:web": "parcel build --dist-dir build public/index.html",
		"start:web": "parcel --dist-dir build public/index.html",
		"build:check": "node -e \"require('./dist-node')\""
	},
	"dependencies": {
		"@csstools/normalize.css": "12.0.0",
		"@klayr/api-client": "^6.1.2",
		"@klayr/client": "^6.1.2",
		"@klayr/cryptography": "^4.1.1",
		"@klayr/transactions": "^6.1.1",
		"@klayr/utils": "^0.4.1",
		"@klayr/validator": "^0.9.1",
		"axios": "1.7.4",
		"express": "4.19.2",
		"klayr-sdk": "6.1.3",
		"react": "^17.0.1",
		"react-dom": "^17.0.1",
		"react-router-dom": "^5.2.0"
	},
	"devDependencies": {
		"@swc/helpers": "0.4.3",
		"@types/cors": "2.8.12",
		"@types/debug": "4.1.5",
		"@types/express": "4.17.14",
		"@types/express-rate-limit": "6.0.0",
		"@types/express-serve-static-core": "4.17.31",
		"@types/jest": "29.2.3",
		"@types/jest-when": "3.5.2",
		"@types/node": "18.15.3",
		"@types/react": "^17.0.0",
		"@types/react-dom": "^17.0.0",
		"@types/react-router-dom": "5.1.7",
		"@types/serve-static": "1.15.0",
		"@typescript-eslint/eslint-plugin": "5.44.0",
		"@typescript-eslint/parser": "5.44.0",
		"eslint": "8.28.0",
		"eslint-config-klayr-base": "2.0.1",
		"eslint-plugin-flowtype": "8.0.3",
		"eslint-plugin-import": "2.26.0",
		"eslint-plugin-jest": "27.1.6",
		"eslint-plugin-jsx-a11y": "6.6.1",
		"eslint-plugin-react": "7.31.11",
		"eslint-plugin-react-hooks": "4.6.0",
		"eslint-plugin-testing-library": "5.9.1",
		"jest": "29.3.1",
		"jest-extended": "3.2.0",
		"jest-when": "3.5.2",
		"parcel": "2.8.0",
		"prettier": "2.8.0",
		"regenerator-runtime": "0.13.9",
		"semver": "7.5.2",
		"source-map-support": "0.5.21",
		"ts-jest": "29.0.3",
		"ts-node": "10.9.1",
		"tsconfig-paths": "4.1.0",
		"typescript": "5.0.2"
	},
	"eslintConfig": {
		"extends": [
			"react-app"
		]
	},
	"browserslist": [
		"defaults",
		"not ios_saf < 13"
	],
	"targets": {
		"main": false
	}
}
