react/package.json

86 lines
2.3 KiB
JSON
Raw Normal View History

2020-04-25 02:27:45 +02:00
{
"name": "@oceanprotocol/react",
2021-05-25 09:56:46 +02:00
"version": "0.6.2",
2020-07-20 12:57:53 +02:00
"description": "React hooks & components on top of @oceanprotocol/lib",
"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": {
"start": "microbundle watch --no-compress --jsx React.createElement",
2020-07-09 14:33:22 +02:00
"start-example": "cd example && npm start",
"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": {
"@oceanprotocol/lib": "^0.15.0",
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",
"web3": "^1.3.6",
2021-01-13 14:37:26 +01:00
"web3modal": "^1.9.3"
2020-04-25 02:27:45 +02:00
},
"devDependencies": {
"@types/node-fetch": "^2.5.7",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
2021-05-25 09:55:29 +02:00
"auto-changelog": "^2.3.0",
"eslint": "^7.27.0",
2020-04-25 02:27:45 +02:00
"eslint-config-oceanprotocol": "^1.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
2020-10-21 15:41:07 +02:00
"eslint-plugin-react-hooks": "^4.2.0",
"microbundle": "^0.13.0",
"prettier": "^2.3.0",
"release-it": "^14.7.0",
2020-09-10 20:17:35 +02:00
"serialize-javascript": "^5.0.1",
"typescript": "^4.2.4"
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"
},
2021-05-25 09:55:29 +02:00
"plugins": {},
2020-04-27 16:54:53 +02:00
"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
}