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": {
|
2019-10-18 13:10:43 +02:00
|
|
|
"@mdx-js/loader": "^1.5.1",
|
|
|
|
"@next/mdx": "^9.1.1",
|
2019-10-16 17:02:04 +02:00
|
|
|
"@oceanprotocol/art": "^2.2.0",
|
|
|
|
"@oceanprotocol/typographies": "^0.1.0",
|
2019-10-16 22:10:03 +02:00
|
|
|
"@zeit/next-css": "^1.0.1",
|
2019-10-19 15:20:42 +02:00
|
|
|
"axios": "^0.19.0",
|
2019-12-12 22:24:06 +01:00
|
|
|
"ipfs-http-client": "^40.1.0",
|
2019-12-17 11:15:32 +01:00
|
|
|
"next": "9.1.6",
|
2019-12-12 22:24:06 +01:00
|
|
|
"next-seo": "^3.1.0",
|
2019-10-22 12:56:23 +02:00
|
|
|
"next-svgr": "^0.0.2",
|
2019-10-24 13:46:06 +02:00
|
|
|
"react": "^16.11.0",
|
|
|
|
"react-dom": "^16.11.0",
|
2019-10-16 17:02:04 +02:00
|
|
|
"react-dropzone": "^10.1.10"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-10-17 14:15:39 +02:00
|
|
|
"@types/next-seo": "^1.10.0",
|
2019-10-24 13:46:06 +02:00
|
|
|
"@types/node": "^12.11.6",
|
2019-10-17 00:13:54 +02:00
|
|
|
"@types/react": "^16.9.9",
|
2019-10-22 12:56:23 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^2.5.0",
|
|
|
|
"@typescript-eslint/parser": "^2.5.0",
|
2019-10-21 11:52:51 +02:00
|
|
|
"cssnano": "^4.1.10",
|
2019-10-16 17:02:04 +02:00
|
|
|
"eslint": "^6.5.1",
|
|
|
|
"eslint-config-oceanprotocol": "^1.5.0",
|
|
|
|
"eslint-config-prettier": "^6.4.0",
|
|
|
|
"eslint-plugin-prettier": "^3.1.1",
|
|
|
|
"eslint-plugin-react": "^7.16.0",
|
2019-10-21 11:52:51 +02:00
|
|
|
"postcss-preset-env": "^6.7.0",
|
2019-10-17 00:13:54 +02:00
|
|
|
"prettier": "^1.18.2",
|
|
|
|
"typescript": "^3.6.4"
|
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
|
|
|
}
|