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

141 lines
4.7 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-10-27 16:08:42 +01:00
"version": "1.0.0",
2020-05-07 08:03:30 +02:00
"license": "Apache-2.0",
2020-10-27 09:13:11 +01:00
"homepage": "https://market.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-11-09 09:58:39 +01:00
"@loadable/component": "^5.14.1",
2020-06-30 13:32:16 +02:00
"@oceanprotocol/art": "^3.0.0",
2020-11-09 09:58:39 +01:00
"@oceanprotocol/lib": "^0.9.10",
"@oceanprotocol/list-datapartners": "^1.0.1",
"@oceanprotocol/react": "^0.3.16",
"@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-11-09 09:58:39 +01:00
"@types/classnames": "^2.2.11",
2020-10-09 21:29:15 +02:00
"@vercel/node": "^1.8.4",
"@walletconnect/web3-provider": "^1.3.1",
2020-10-26 15:56:52 +01:00
"axios": "^0.21.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",
"ethereum-address": "0.0.4",
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-11-09 09:58:39 +01:00
"formik": "^2.2.2",
"gatsby": "^2.25.3",
2020-10-09 21:29:15 +02:00
"gatsby-image": "^2.4.21",
2020-11-09 09:58:39 +01:00
"gatsby-plugin-google-analytics": "^2.4.0",
"gatsby-plugin-manifest": "^2.5.2",
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",
2020-11-09 09:58:39 +01:00
"gatsby-plugin-sharp": "^2.7.1",
"gatsby-plugin-svgr": "^2.0.2",
"gatsby-plugin-use-dark-mode": "^1.1.2",
"gatsby-plugin-webpack-size": "^1.0.0",
2020-11-09 09:58:39 +01:00
"gatsby-source-filesystem": "^2.4.2",
"gatsby-source-graphql": "^2.7.7",
2020-10-21 14:37:18 +02:00
"gatsby-transformer-json": "^2.4.15",
2020-11-09 09:58:39 +01:00
"gatsby-transformer-remark": "^2.9.2",
"gatsby-transformer-sharp": "^2.5.21",
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-11-09 09:58:39 +01:00
"query-string": "^6.13.7",
"react": "^17.0.1",
"react-alice-carousel": "^2.0.2",
2020-09-22 13:47:55 +02:00
"react-data-table-component": "^6.11.5",
"react-datepicker": "^3.3.0",
2020-11-09 09:58:39 +01:00
"react-dom": "^17.0.1",
2020-05-07 08:03:30 +02:00
"react-dotdotdot": "^1.3.1",
2020-11-09 09:58:39 +01:00
"react-dropzone": "^11.2.3",
"react-helmet": "^6.1.0",
"react-intersection-observer": "^8.30.1",
2020-10-23 13:37:44 +02:00
"react-markdown": "^5.0.2",
"react-modal": "^3.11.2",
2020-09-16 11:00:35 +02:00
"react-paginate": "^6.5.0",
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-11-09 09:58:39 +01:00
"react-toastify": "^6.1.0",
2020-10-05 16:14:59 +02:00
"remove-markdown": "^0.3.0",
2020-10-22 11:13:25 +02:00
"shortid": "^2.2.16",
2020-11-09 09:58:39 +01:00
"slugify": "^1.4.6",
"swr": "^0.3.8",
"use-dark-mode": "^2.3.1",
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-11-09 09:58:39 +01:00
"@storybook/addon-actions": "^6.0.28",
"@storybook/addon-storyshots": "^6.0.28",
"@storybook/react": "^6.0.28",
2020-06-30 13:32:16 +02:00
"@svgr/webpack": "^5.4.0",
2020-10-28 13:48:26 +01:00
"@testing-library/jest-dom": "^5.11.5",
2020-11-09 09:58:39 +01:00
"@testing-library/react": "^11.1.1",
2020-10-21 14:37:18 +02:00
"@types/jest": "^26.0.15",
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-11-09 09:58:39 +01:00
"@types/node": "^14.14.6",
"@types/react": "^16.9.56",
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",
"@types/react-modal": "^3.10.6",
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-11-09 09:58:39 +01:00
"@types/yup": "^0.29.9",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"babel-loader": "^8.1.0",
2020-11-09 09:58:39 +01:00
"babel-preset-react-app": "^10.0.0",
2020-10-28 13:48:26 +01:00
"eslint": "^7.12.1",
2020-05-07 08:03:30 +02:00
"eslint-config-oceanprotocol": "^1.5.0",
2020-10-28 13:48:26 +01:00
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
2020-10-21 14:37:18 +02:00
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
2020-05-07 08:03:30 +02:00
"identity-obj-proxy": "^3.0.0",
2020-11-09 09:58:39 +01:00
"jest": "^26.6.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-10-28 13:48:26 +01:00
"typescript": "^4.0.5"
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"
]
}