2019-10-16 17:02:04 +02:00
|
|
|
{
|
|
|
|
"name": "@oceanprotocol/ipfs",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Ocean Protocol's Public IPFS Node.",
|
|
|
|
"scripts": {
|
2019-10-16 22:10:03 +02:00
|
|
|
"start": "next dev",
|
|
|
|
"build": "next build",
|
2019-10-17 00:13:54 +02:00
|
|
|
"serve": "next start",
|
2019-10-21 11:52:51 +02:00
|
|
|
"test": "eslint --ignore-path .gitignore 'src/**/*.{js,jsx,ts,tsx}'",
|
2019-10-17 00:13:54 +02:00
|
|
|
"format": "prettier ./src/**/*.{css,yml,js,jsx,ts,tsx,json} --write"
|
2019-10-16 17:02:04 +02:00
|
|
|
},
|
|
|
|
"author": "Matthias Kretschmann <matthias@oceanprotocol.com>",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"dependencies": {
|
2020-01-28 10:57:52 +01:00
|
|
|
"@mdx-js/loader": "^1.5.5",
|
|
|
|
"@next/mdx": "^9.2.1",
|
2019-10-16 17:02:04 +02:00
|
|
|
"@oceanprotocol/art": "^2.2.0",
|
|
|
|
"@oceanprotocol/typographies": "^0.1.0",
|
2020-01-28 10:57:52 +01:00
|
|
|
"axios": "^0.19.2",
|
|
|
|
"ipfs-http-client": "^41.0.1",
|
|
|
|
"next": "9.2.1",
|
|
|
|
"next-seo": "^3.4.0",
|
2019-10-22 12:56:23 +02:00
|
|
|
"next-svgr": "^0.0.2",
|
2020-01-07 13:02:23 +01:00
|
|
|
"react": "^16.12.0",
|
|
|
|
"react-dom": "^16.12.0",
|
|
|
|
"react-dropzone": "^10.2.1"
|
2019-10-16 17:02:04 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-10-17 14:15:39 +02:00
|
|
|
"@types/next-seo": "^1.10.0",
|
2020-01-28 21:39:34 +01:00
|
|
|
"@types/node": "^13.5.1",
|
2020-01-28 10:57:52 +01:00
|
|
|
"@types/react": "^16.9.19",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^2.18.0",
|
|
|
|
"@typescript-eslint/parser": "^2.18.0",
|
2019-10-21 11:52:51 +02:00
|
|
|
"cssnano": "^4.1.10",
|
2020-01-07 13:02:23 +01:00
|
|
|
"eslint": "^6.8.0",
|
2019-10-16 17:02:04 +02:00
|
|
|
"eslint-config-oceanprotocol": "^1.5.0",
|
2020-01-28 10:57:52 +01:00
|
|
|
"eslint-config-prettier": "^6.10.0",
|
2020-01-07 13:02:23 +01:00
|
|
|
"eslint-plugin-prettier": "^3.1.2",
|
2020-01-28 10:57:52 +01:00
|
|
|
"eslint-plugin-react": "^7.18.0",
|
2019-10-21 11:52:51 +02:00
|
|
|
"postcss-preset-env": "^6.7.0",
|
2020-01-07 13:02:23 +01:00
|
|
|
"prettier": "^1.19.1",
|
2020-01-28 10:57:52 +01:00
|
|
|
"typescript": "^3.7.5"
|
2019-10-16 17:02:04 +02:00
|
|
|
},
|
2019-10-22 15:20:41 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/oceanprotocol/ipfs"
|
|
|
|
},
|
2019-10-16 17:26:46 +02:00
|
|
|
"engines": {
|
|
|
|
"node": "10.x"
|
2019-10-21 11:52:51 +02:00
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not ie <= 11",
|
|
|
|
"not op_mini all"
|
|
|
|
]
|
2019-10-16 17:02:04 +02:00
|
|
|
}
|