commons/client/package.json

89 lines
2.6 KiB
JSON
Raw Normal View History

{
2019-04-03 14:40:31 +02:00
"name": "commons-client",
2019-03-25 13:13:55 +01:00
"description": "Ocean Protocol marketplace frontend to explore, download, and publish open data sets.",
2020-03-20 11:47:03 +01:00
"version": "2.3.1",
2019-03-25 13:13:55 +01:00
"license": "Apache-2.0",
"scripts": {
"start": "react-scripts start",
"build": "CI=false react-scripts --max_old_space_size=4096 build",
"test": "react-scripts test --coverage --watchAll=false --silent",
2019-04-30 19:19:28 +02:00
"test:watch": "react-scripts test --coverage",
2019-04-30 12:21:43 +02:00
"eject": "react-scripts eject",
2019-07-31 12:52:10 +02:00
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"dependencies": {
2019-02-08 14:39:24 +01:00
"@oceanprotocol/art": "^2.2.0",
"@oceanprotocol/squid": "2.1.2",
"@oceanprotocol/typographies": "^0.1.0",
"@sindresorhus/slugify": "^1.0.0",
"@truffle/hdwallet-provider": "^1.0.35",
2020-01-31 16:54:22 +01:00
"axios": "^0.19.2",
2019-07-09 12:22:40 +02:00
"bip39": "^3.0.2",
2019-01-24 15:42:10 +01:00
"classnames": "^2.2.6",
2019-06-26 16:28:22 +02:00
"ethereum-blockies": "github:MyEtherWallet/blockies",
2020-03-16 11:48:08 +01:00
"filesize": "^6.1.0",
2019-10-28 16:22:01 +01:00
"history": "^4.10.1",
"ipfs-http-client": "44.1.0",
2019-09-06 13:15:48 +02:00
"is-url-superb": "^3.0.0",
"moment": "^2.25.3",
2020-01-31 16:54:22 +01:00
"node-sass": "^4.13.1",
"query-string": "^6.12.1",
2020-03-17 11:54:46 +01:00
"react": "^16.13.1",
"react-collapsed": "^3.0.0",
"react-datepicker": "^2.16.0",
2020-03-17 11:54:46 +01:00
"react-dom": "^16.13.1",
2019-07-17 10:09:27 +02:00
"react-dotdotdot": "^1.3.1",
"react-dropzone": "^11.0.1",
2019-10-28 16:22:01 +01:00
"react-ga": "^2.7.0",
"react-helmet": "^6.0.0",
2020-01-06 14:53:03 +01:00
"react-markdown": "^4.3.1",
2020-03-16 11:48:08 +01:00
"react-modal": "^3.11.2",
"react-moment": "^0.9.7",
2019-11-07 11:19:12 +01:00
"react-paginate": "^6.3.2",
"react-popper": "^1.3.7",
2019-10-28 16:22:01 +01:00
"react-router-dom": "^5.1.2",
"react-transition-group": "^4.3.0",
2019-09-12 11:27:32 +02:00
"shortid": "^2.2.15",
2020-03-16 11:48:08 +01:00
"web3": "^1.2.6"
},
"devDependencies": {
2019-04-30 19:19:28 +02:00
"@react-mock/state": "^0.1.8",
2020-03-17 11:54:46 +01:00
"@sheerun/mutationobserver-shim": "^0.3.3",
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^10.0.4",
2020-03-16 11:48:08 +01:00
"@types/classnames": "^2.2.10",
2019-02-27 01:02:36 +01:00
"@types/is-url": "^1.2.28",
"@types/jest": "^25.2.2",
"@types/react": "^16.9.35",
2020-03-16 11:48:08 +01:00
"@types/react-datepicker": "^2.11.0",
"@types/react-dom": "^16.9.8",
2020-01-06 14:53:03 +01:00
"@types/react-helmet": "^5.0.15",
2020-03-16 11:48:08 +01:00
"@types/react-modal": "^3.10.5",
2019-04-15 22:13:40 +02:00
"@types/react-paginate": "^6.2.1",
2019-12-06 16:24:48 +01:00
"@types/react-router-dom": "^5.1.3",
2020-03-16 11:48:08 +01:00
"@types/react-transition-group": "^4.2.4",
"@types/shortid": "^0.0.29",
"jest-mock-axios": "^4.0.0",
"react-scripts": "^3.4.1",
"source-map-explorer": "^2.4.2",
"typescript": "^3.9.2"
},
2019-03-25 13:13:55 +01:00
"repository": {
"type": "git",
2019-04-03 14:40:31 +02:00
"url": "https://github.com/oceanprotocol/commons"
2019-03-25 13:13:55 +01:00
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
2019-04-30 19:19:28 +02:00
],
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/serviceWorker.ts",
"!src/**/*.d.ts"
2019-04-30 19:19:28 +02:00
]
}
}