1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-26 03:06:49 +02:00
market/package.json

133 lines
4.4 KiB
JSON
Raw Normal View History

2020-05-07 08:03:30 +02:00
{
"name": "@oceanprotocol/market",
2020-05-19 12:57:07 +02:00
"description": "Data marketplace for ocean.",
2020-07-15 13:51:58 +02:00
"version": "0.1.0",
2020-05-07 08:03:30 +02:00
"license": "Apache-2.0",
"homepage": "https://oceanprotocol.com",
2020-05-07 08:03:30 +02:00
"scripts": {
2020-08-05 10:14:50 +02:00
"start": "gatsby develop --host 0.0.0.0",
2020-06-30 13:32:16 +02:00
"build": "gatsby clean && gatsby build",
"serve": "serve -s public/",
2020-05-07 08:03:30 +02:00
"jest": "NODE_ENV=test jest -c tests/unit/jest.config.js",
"test": "npm run lint && npm run jest",
"test:watch": "npm run lint && npm run jest -- --watch",
2020-09-24 13:33:33 +02:00
"lint": "eslint --ignore-path .gitignore --ext .js --ext .ts --ext .tsx . && npm run type-check",
"format": "prettier --ignore-path .gitignore './**/*.{css,yml,js,ts,tsx,json}' --write",
"type-check": "tsc --noEmit",
"analyze": "npm run build && source-map-explorer 'public/*.js'",
2020-05-07 08:03:30 +02:00
"storybook": "start-storybook -p 4000 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o public/storybook"
},
"dependencies": {
2020-09-22 13:47:55 +02:00
"@coingecko/cryptoformat": "^0.4.2",
2020-09-22 16:45:14 +02:00
"@loadable/component": "5.13.1",
2020-06-30 13:32:16 +02:00
"@oceanprotocol/art": "^3.0.0",
2020-10-21 11:36:57 +02:00
"@oceanprotocol/lib": "^0.6.7",
2020-10-19 10:32:41 +02:00
"@oceanprotocol/react": "^0.2.2",
"@oceanprotocol/typographies": "^0.1.0",
2020-05-19 10:57:49 +02:00
"@sindresorhus/slugify": "^1.0.0",
2020-09-29 13:46:03 +02:00
"@tippyjs/react": "^4.2.0",
"@toruslabs/torus-embed": "^1.8.6",
2020-05-19 10:57:49 +02:00
"@types/classnames": "^2.2.10",
2020-10-09 21:29:15 +02:00
"@vercel/node": "^1.8.4",
"@walletconnect/web3-provider": "^1.3.1",
2020-08-28 18:53:09 +02:00
"axios": "^0.20.0",
2020-05-19 10:57:49 +02:00
"classnames": "^2.2.6",
2020-09-01 10:47:20 +02:00
"date-fns": "^2.16.1",
2020-09-29 13:46:03 +02:00
"decimal.js": "^10.2.1",
2020-10-05 15:03:21 +02:00
"dom-confetti": "^0.2.2",
2020-05-07 08:03:30 +02:00
"dotenv": "^8.2.0",
2020-07-08 00:06:48 +02:00
"ethereum-blockies": "github:MyEtherWallet/blockies",
2020-05-07 08:03:30 +02:00
"filesize": "^6.1.0",
2020-10-09 21:29:15 +02:00
"formik": "^2.2.0",
2020-10-19 10:32:41 +02:00
"gatsby": "^2.24.80",
2020-10-09 21:29:15 +02:00
"gatsby-image": "^2.4.21",
2020-10-19 10:32:41 +02:00
"gatsby-plugin-manifest": "^2.4.35",
2020-10-09 21:29:15 +02:00
"gatsby-plugin-react-helmet": "^3.3.14",
2020-09-29 13:46:03 +02:00
"gatsby-plugin-remove-trailing-slashes": "^2.3.13",
"gatsby-plugin-sharp": "^2.6.42",
"gatsby-plugin-svgr": "^2.0.2",
"gatsby-plugin-webpack-size": "^1.0.0",
2020-10-19 10:32:41 +02:00
"gatsby-source-filesystem": "^2.3.35",
2020-10-09 21:29:15 +02:00
"gatsby-source-graphql": "^2.7.6",
"gatsby-transformer-json": "^2.4.14",
2020-10-19 10:32:41 +02:00
"gatsby-transformer-remark": "^2.8.42",
"gatsby-transformer-sharp": "^2.5.18",
2020-06-30 13:39:48 +02:00
"intersection-observer": "^0.11.0",
"is-url-superb": "^4.0.0",
2020-08-27 12:30:36 +02:00
"lodash.debounce": "^4.0.8",
"lodash.omit": "^4.5.0",
2020-10-19 10:32:41 +02:00
"query-string": "^6.13.6",
"react": "^16.14.0",
2020-09-22 13:47:55 +02:00
"react-data-table-component": "^6.11.5",
"react-datepicker": "^3.3.0",
"react-dom": "^16.14.0",
2020-05-07 08:03:30 +02:00
"react-dotdotdot": "^1.3.1",
2020-09-22 13:47:55 +02:00
"react-dropzone": "^11.2.0",
"react-helmet": "^6.1.0",
2020-05-07 08:03:30 +02:00
"react-markdown": "^4.3.1",
2020-09-16 11:00:35 +02:00
"react-paginate": "^6.5.0",
2020-09-29 13:46:03 +02:00
"react-responsive-modal": "^5.1.1",
2020-07-08 16:39:12 +02:00
"react-spring": "^8.0.27",
2020-07-08 17:57:53 +02:00
"react-tabs": "^3.1.1",
2020-10-09 21:29:15 +02:00
"react-toastify": "^6.0.9",
2020-10-05 16:14:59 +02:00
"remove-markdown": "^0.3.0",
2020-05-07 08:03:30 +02:00
"shortid": "^2.2.15",
2020-07-30 11:32:56 +02:00
"slugify": "^1.4.5",
2020-09-29 13:46:03 +02:00
"swr": "^0.3.5",
2020-08-05 10:14:50 +02:00
"yup": "^0.29.3"
2020-05-07 08:03:30 +02:00
},
"devDependencies": {
2020-10-19 10:32:41 +02:00
"@babel/core": "^7.12.3",
"@babel/preset-typescript": "^7.12.1",
2020-10-05 12:26:15 +02:00
"@storybook/addon-actions": "^6.0.26",
"@storybook/addon-storyshots": "^6.0.26",
"@storybook/react": "^6.0.26",
2020-06-30 13:32:16 +02:00
"@svgr/webpack": "^5.4.0",
2020-08-28 18:53:09 +02:00
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
2020-09-22 13:47:55 +02:00
"@types/jest": "^26.0.14",
2020-09-29 13:46:03 +02:00
"@types/loadable__component": "^5.13.1",
2020-08-28 18:53:09 +02:00
"@types/lodash.debounce": "^4.0.3",
"@types/lodash.omit": "^4.5.6",
2020-10-19 10:32:41 +02:00
"@types/node": "^14.11.10",
"@types/react": "^16.9.53",
2020-08-03 19:36:06 +02:00
"@types/react-datepicker": "^3.1.1",
2020-08-05 10:14:50 +02:00
"@types/react-helmet": "^6.1.0",
2020-05-07 08:03:30 +02:00
"@types/react-paginate": "^6.2.1",
2020-07-08 17:57:53 +02:00
"@types/react-tabs": "^2.3.2",
2020-10-05 16:14:59 +02:00
"@types/remove-markdown": "^0.1.1",
2020-05-07 08:03:30 +02:00
"@types/shortid": "0.0.29",
2020-10-09 21:29:15 +02:00
"@types/yup": "^0.29.8",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"eslint": "^7.11.0",
2020-05-07 08:03:30 +02:00
"eslint-config-oceanprotocol": "^1.5.0",
2020-10-19 10:32:41 +02:00
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
2020-09-16 11:08:35 +02:00
"eslint-plugin-react-hooks": "^4.1.2",
2020-05-07 08:03:30 +02:00
"identity-obj-proxy": "^3.0.0",
"jest": "^26.5.3",
2020-09-16 11:00:35 +02:00
"prettier": "^2.1.2",
2020-06-30 13:32:16 +02:00
"serve": "^11.3.2",
2020-08-28 18:53:09 +02:00
"source-map-explorer": "^2.5.0",
2020-09-22 13:47:55 +02:00
"typescript": "^4.0.3"
2020-05-07 08:03:30 +02:00
},
"repository": {
"type": "git",
2020-05-19 12:57:07 +02:00
"url": "https://github.com/oceanprotocol/market"
2020-05-07 08:03:30 +02:00
},
"engines": {
"node": ">=12"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}