2019-09-16 11:28:08 +02:00
|
|
|
{
|
2019-09-16 14:53:19 +02:00
|
|
|
"name": "@oceanprotocol/status",
|
2019-09-16 15:16:35 +02:00
|
|
|
"description": "Overview and status checks of all Ocean Protocol RPC network connections.",
|
2019-09-16 11:28:08 +02:00
|
|
|
"version": "0.1.0",
|
2019-09-16 15:16:35 +02:00
|
|
|
"license": "Apache-2.0",
|
2019-09-16 11:28:08 +02:00
|
|
|
"scripts": {
|
2019-12-07 23:02:18 +01:00
|
|
|
"start": "next dev",
|
|
|
|
"build": "next build",
|
|
|
|
"serve": "next start",
|
|
|
|
"analyze": "ANALYZE=true next build",
|
2019-12-12 20:48:00 +01:00
|
|
|
"test": "npm run lint && NODE_ENV=test jest --silent",
|
2019-12-07 23:02:18 +01:00
|
|
|
"test:watch": "npm run lint && NODE_ENV=test jest --watch",
|
2019-09-16 17:07:07 +02:00
|
|
|
"lint": "eslint --ignore-path .gitignore --ext .js .",
|
2019-12-07 23:02:18 +01:00
|
|
|
"format": "prettier --ignore-path .gitignore **/**/*.{css,yml,js,jsx,ts,tsx,json} --write"
|
2019-09-16 11:28:08 +02:00
|
|
|
},
|
2019-09-16 14:53:19 +02:00
|
|
|
"dependencies": {
|
2019-11-26 13:01:04 +01:00
|
|
|
"@ethereum-navigator/atlas": "^0.5.1",
|
2019-09-16 14:53:19 +02:00
|
|
|
"@oceanprotocol/art": "^2.2.0",
|
|
|
|
"@oceanprotocol/typographies": "^0.1.0",
|
2020-01-28 11:04:48 +01:00
|
|
|
"axios": "^0.19.2",
|
2019-12-12 20:48:00 +01:00
|
|
|
"ethereumjs-units": "^0.2.0",
|
2020-01-28 11:04:48 +01:00
|
|
|
"next": "^9.2.1",
|
|
|
|
"next-seo": "^3.4.0",
|
2019-12-07 23:02:18 +01:00
|
|
|
"next-svgr": "^0.0.2",
|
2019-11-26 13:01:04 +01:00
|
|
|
"react": "^16.12.0",
|
2019-12-07 23:02:18 +01:00
|
|
|
"react-dom": "^16.12.0"
|
2019-09-16 14:53:19 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-01-28 11:04:48 +01:00
|
|
|
"@next/bundle-analyzer": "^9.2.1",
|
2020-01-22 14:25:26 +01:00
|
|
|
"@testing-library/jest-dom": "^5.0.1",
|
2020-01-07 12:57:03 +01:00
|
|
|
"@testing-library/react": "^9.4.0",
|
|
|
|
"@types/bn.js": "^4.11.6",
|
2020-01-27 21:45:31 +01:00
|
|
|
"@types/jest": "^25.1.0",
|
2019-12-07 23:02:18 +01:00
|
|
|
"@types/next-seo": "^1.10.0",
|
2020-01-28 21:33:19 +01:00
|
|
|
"@types/node": "^13.5.1",
|
2020-01-28 11:04:48 +01:00
|
|
|
"@types/react": "^16.9.19",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^2.18.0",
|
|
|
|
"@typescript-eslint/parser": "^2.18.0",
|
2019-12-07 23:02:18 +01:00
|
|
|
"cssnano": "^4.1.10",
|
2020-01-07 12:57:03 +01:00
|
|
|
"eslint": "^6.8.0",
|
2019-09-16 14:53:19 +02:00
|
|
|
"eslint-config-oceanprotocol": "^1.5.0",
|
2020-01-28 11:04:48 +01:00
|
|
|
"eslint-config-prettier": "^6.10.0",
|
2020-01-07 12:57:03 +01:00
|
|
|
"eslint-plugin-prettier": "^3.1.2",
|
2019-12-07 23:02:18 +01:00
|
|
|
"jest": "^24.9.0",
|
|
|
|
"postcss-preset-env": "^6.7.0",
|
|
|
|
"prettier": "^1.19.1",
|
2020-01-30 10:16:25 +01:00
|
|
|
"ts-jest": "^25.1.0",
|
2020-01-28 11:04:48 +01:00
|
|
|
"typescript": "^3.7.5",
|
2020-01-07 12:57:03 +01:00
|
|
|
"webpack": "^4.41.5"
|
2019-09-16 11:28:08 +02:00
|
|
|
},
|
2019-09-16 15:16:35 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/oceanprotocol/status"
|
|
|
|
},
|
2019-09-16 11:28:08 +02:00
|
|
|
"browserslist": {
|
|
|
|
"production": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
2019-09-16 17:50:22 +02:00
|
|
|
"not ie <= 11",
|
2019-09-16 11:28:08 +02:00
|
|
|
"not op_mini all"
|
|
|
|
],
|
|
|
|
"development": [
|
|
|
|
"last 1 chrome version",
|
|
|
|
"last 1 firefox version",
|
|
|
|
"last 1 safari version"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|