2020-04-25 02:27:45 +02:00
|
|
|
{
|
|
|
|
"name": "@oceanprotocol/react",
|
2021-04-06 11:18:08 +02:00
|
|
|
"version": "0.6.0",
|
2020-07-20 12:57:53 +02:00
|
|
|
"description": "React hooks & components on top of @oceanprotocol/lib",
|
2020-07-18 04:26:38 +02:00
|
|
|
"main": "dist/index.js",
|
|
|
|
"umd:main": "dist/index.umd.js",
|
|
|
|
"module": "dist/index.esm.js",
|
|
|
|
"esmodule": "dist/index.modern.js",
|
|
|
|
"types": "dist/index.d.ts",
|
2020-04-25 02:27:45 +02:00
|
|
|
"scripts": {
|
2020-07-18 04:26:38 +02:00
|
|
|
"start": "microbundle watch --no-compress --jsx React.createElement",
|
2020-07-09 14:33:22 +02:00
|
|
|
"start-example": "cd example && npm start",
|
2020-07-18 04:26:38 +02:00
|
|
|
"build": "rm -rf dist && microbundle build --no-compress --jsx React.createElement",
|
2020-07-18 02:44:41 +02:00
|
|
|
"test": "npm run lint && npm run type-check",
|
2020-07-14 14:51:42 +02:00
|
|
|
"lint": "eslint --ignore-path .eslintignore --ext .js --ext .ts --ext .tsx .",
|
2020-04-27 16:54:53 +02:00
|
|
|
"format": "prettier --ignore-path .gitignore './**/*.{css,yml,js,ts,tsx,json}' --write",
|
|
|
|
"release": "release-it --non-interactive",
|
|
|
|
"changelog": "auto-changelog -p",
|
2020-07-18 02:44:41 +02:00
|
|
|
"prepublishOnly": "npm run build",
|
|
|
|
"type-check": "tsc --noEmit"
|
2020-04-25 02:27:45 +02:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"LICENSE",
|
|
|
|
"README.md",
|
|
|
|
"dist/"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2021-04-06 11:05:17 +02:00
|
|
|
"@oceanprotocol/lib": "^0.12.2",
|
2021-01-13 14:37:26 +01:00
|
|
|
"axios": "^0.21.1",
|
2020-09-29 13:40:15 +02:00
|
|
|
"decimal.js": "^10.2.1",
|
2021-03-03 02:54:00 +01:00
|
|
|
"web3": "1.3.4",
|
2021-01-13 14:37:26 +01:00
|
|
|
"web3modal": "^1.9.3"
|
2020-04-25 02:27:45 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-09-07 12:58:11 +02:00
|
|
|
"@release-it/bumper": "^2.0.0",
|
2020-09-15 21:28:27 +02:00
|
|
|
"@types/node-fetch": "^2.5.7",
|
2020-11-24 13:27:25 +01:00
|
|
|
"@types/react": "^17.0.0",
|
2021-03-04 12:21:48 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.16.1",
|
|
|
|
"@typescript-eslint/parser": "^4.16.1",
|
2020-10-19 10:26:58 +02:00
|
|
|
"auto-changelog": "^2.2.1",
|
2021-03-04 12:48:36 +01:00
|
|
|
"eslint": "^7.21.0",
|
2020-04-25 02:27:45 +02:00
|
|
|
"eslint-config-oceanprotocol": "^1.5.0",
|
2021-03-04 12:21:48 +01:00
|
|
|
"eslint-config-prettier": "^8.1.0",
|
2021-01-13 14:37:26 +01:00
|
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
|
|
"eslint-plugin-react": "^7.22.0",
|
2020-10-21 15:41:07 +02:00
|
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
2021-01-13 09:37:28 +01:00
|
|
|
"microbundle": "^0.13.0",
|
2021-01-13 14:37:26 +01:00
|
|
|
"prettier": "^2.2.1",
|
2021-03-04 12:48:36 +01:00
|
|
|
"release-it": "^14.4.1",
|
2020-09-10 20:17:35 +02:00
|
|
|
"serialize-javascript": "^5.0.1",
|
2021-03-04 12:48:36 +01:00
|
|
|
"typescript": "^4.2.2"
|
2020-04-25 02:27:45 +02:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2020-04-27 10:34:22 +02:00
|
|
|
"react": ">=16.8.0"
|
2020-04-25 02:27:45 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/oceanprotocol/react.git"
|
|
|
|
},
|
|
|
|
"author": "",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/oceanprotocol/react/issues"
|
|
|
|
},
|
2020-04-27 16:54:53 +02:00
|
|
|
"homepage": "https://github.com/oceanprotocol/react#readme",
|
|
|
|
"release-it": {
|
|
|
|
"hooks": {
|
|
|
|
"after:bump": "npm run changelog"
|
|
|
|
},
|
|
|
|
"plugins": {
|
|
|
|
"@release-it/bumper": {
|
|
|
|
"out": [
|
|
|
|
"package.json",
|
|
|
|
"package-lock.json"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"git": {
|
|
|
|
"tagName": "v${version}"
|
|
|
|
},
|
|
|
|
"github": {
|
2020-05-19 18:03:50 +02:00
|
|
|
"release": true
|
2020-04-27 16:54:53 +02:00
|
|
|
},
|
|
|
|
"npm": {
|
2020-05-11 18:03:25 +02:00
|
|
|
"publish": false
|
2020-04-27 16:54:53 +02:00
|
|
|
}
|
2020-05-11 18:14:51 +02:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
2020-09-02 10:37:48 +02:00
|
|
|
},
|
|
|
|
"directories": {
|
|
|
|
"example": "example"
|
2020-04-27 16:54:53 +02:00
|
|
|
}
|
2020-04-25 02:27:45 +02:00
|
|
|
}
|