mirror of
https://github.com/oceanprotocol/ipfs
synced 2024-10-31 23:25:17 +01:00
54 lines
1.4 KiB
JSON
54 lines
1.4 KiB
JSON
{
|
|
"name": "@oceanprotocol/ipfs",
|
|
"version": "1.0.0",
|
|
"description": "Ocean Protocol's Public IPFS Node.",
|
|
"scripts": {
|
|
"start": "next dev",
|
|
"build": "next build",
|
|
"serve": "next start",
|
|
"test": "eslint --ignore-path .gitignore --ext .ts,.tsx ./src",
|
|
"format": "prettier ./src/**/*.{css,yml,js,jsx,ts,tsx,json} --write"
|
|
},
|
|
"author": "Matthias Kretschmann <matthias@oceanprotocol.com>",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@oceanprotocol/art": "^2.2.0",
|
|
"@oceanprotocol/typographies": "^0.1.0",
|
|
"@zeit/next-css": "^1.0.1",
|
|
"ipfs-http-client": "^38.2.0",
|
|
"next": "9.1.1",
|
|
"next-svgr": "0.0.2",
|
|
"react": "^16.10.2",
|
|
"react-dom": "^16.10.2",
|
|
"react-dropzone": "^10.1.10"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^12.11.1",
|
|
"@types/react": "^16.9.9",
|
|
"@typescript-eslint/eslint-plugin": "^2.4.0",
|
|
"@typescript-eslint/parser": "^2.4.0",
|
|
"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",
|
|
"prettier": "^1.18.2",
|
|
"typescript": "^3.6.4"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"oceanprotocol",
|
|
"oceanprotocol/react",
|
|
"prettier/react",
|
|
"prettier/standard",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"plugins": [
|
|
"prettier"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": "10.x"
|
|
}
|
|
}
|