react/package.json

94 lines
2.5 KiB
JSON
Raw Normal View History

2020-04-25 02:27:45 +02:00
{
"name": "@oceanprotocol/react",
2020-09-10 20:17:49 +02:00
"version": "0.0.43",
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": {
2020-09-10 17:11:42 +02:00
"@oceanprotocol/lib": "^0.2.4",
2020-08-31 10:27:44 +02:00
"axios": "^0.20.0",
2020-08-04 13:37:12 +02:00
"decimal.js": "^10.2.0",
2020-09-15 21:57:44 +02:00
"web3": "^1.3.0",
2020-07-30 21:03:09 +02:00
"web3modal": "^1.9.0"
2020-04-25 02:27:45 +02:00
},
"devDependencies": {
2020-09-07 12:58:11 +02:00
"@release-it/bumper": "^2.0.0",
"@types/node-fetch": "^2.5.7",
2020-09-07 12:58:11 +02:00
"@types/react": "^16.9.49",
2020-09-15 21:57:44 +02:00
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
2020-07-08 10:35:41 +02:00
"auto-changelog": "^2.2.0",
2020-09-07 12:58:11 +02:00
"eslint": "^7.8.1",
2020-04-25 02:27:45 +02:00
"eslint-config-oceanprotocol": "^1.5.0",
"eslint-config-prettier": "^6.11.0",
2020-07-08 10:35:41 +02:00
"eslint-plugin-prettier": "^3.1.4",
2020-07-30 21:03:09 +02:00
"eslint-plugin-react": "^7.20.5",
"microbundle": "^0.12.3",
2020-08-31 10:27:44 +02:00
"prettier": "^2.1.1",
2020-09-15 21:57:44 +02:00
"release-it": "^14.0.3",
2020-09-10 20:17:35 +02:00
"serialize-javascript": "^5.0.1",
2020-08-31 10:27:44 +02:00
"typescript": "^4.0.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
}