1
0
mirror of https://github.com/oceanprotocol/react.git synced 2025-02-14 21:10:38 +01:00
react/package.json

82 lines
2.0 KiB
JSON
Raw Normal View History

2020-04-25 02:27:45 +02:00
{
"name": "@oceanprotocol/react",
2020-05-14 14:44:33 +02:00
"version": "0.0.4",
2020-04-25 02:27:45 +02:00
"description": "React hooks & components on top of squid.js",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"scripts": {
"start": "tsc --watch",
2020-05-11 13:47:21 +02:00
"build": "tsc",
2020-04-25 02:27:45 +02:00
"test": "npm run lint",
"lint": "eslint --ignore-path .gitignore --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",
"prepublishOnly": "npm run build"
2020-04-25 02:27:45 +02:00
},
"files": [
"LICENSE",
"README.md",
"dist/"
],
"dependencies": {
"@oceanprotocol/squid": "^2.1.1",
2020-04-27 14:37:26 +02:00
"axios": "^0.19.2",
2020-05-11 13:47:21 +02:00
"react": "^16.13.1",
"web3connect": "^1.0.0-beta.33"
2020-04-25 02:27:45 +02:00
},
"devDependencies": {
2020-05-11 17:54:21 +02:00
"@release-it/bumper": "^1.1.1",
2020-04-25 02:27:45 +02:00
"@types/react": "^16.9.34",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
2020-04-27 16:54:53 +02:00
"auto-changelog": "^2.0.0",
2020-04-25 02:27:45 +02:00
"eslint": "^6.8.0",
"eslint-config-oceanprotocol": "^1.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"prettier": "^2.0.5",
2020-04-27 16:54:53 +02:00
"release-it": "^13.5.6",
2020-04-25 02:27:45 +02:00
"typescript": "^3.8.3"
},
"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-11 17:51:41 +02:00
"release": false
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-04-27 16:54:53 +02:00
}
2020-04-25 02:27:45 +02:00
}