status/package.json

67 lines
1.9 KiB
JSON
Raw Normal View History

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",
2020-05-18 09:47:53 +02:00
"lint": "eslint --ignore-path .gitignore --ext .js --ext .jsx .",
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": {
2020-05-19 18:40:45 +02:00
"@ethereum-navigator/atlas": "^0.7.1",
2019-09-16 14:53:19 +02:00
"@oceanprotocol/art": "^2.2.0",
"@oceanprotocol/typographies": "^0.1.0",
"axios": "^0.19.2",
2019-12-12 20:48:00 +01:00
"ethereumjs-units": "^0.2.0",
2020-06-04 09:24:26 +02:00
"next": "^9.4.4",
2020-05-18 09:47:53 +02:00
"next-seo": "^4.5.0",
2019-12-07 23:02:18 +01:00
"next-svgr": "^0.0.2",
2020-05-18 09:47:53 +02:00
"react": "^16.13.1",
"react-dom": "^16.13.1"
2019-09-16 14:53:19 +02:00
},
"devDependencies": {
2020-06-04 09:24:26 +02:00
"@next/bundle-analyzer": "^9.4.4",
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^10.2.1",
"@types/bn.js": "^4.11.6",
"@types/jest": "^25.2.3",
2019-12-07 23:02:18 +01:00
"@types/next-seo": "^1.10.0",
"@types/node": "^14.0.11",
2020-05-18 09:47:53 +02:00
"@types/react": "^16.9.35",
2020-06-04 09:24:26 +02:00
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.2.0",
2019-09-16 14:53:19 +02:00
"eslint-config-oceanprotocol": "^1.5.0",
2020-05-18 09:47:53 +02:00
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
2020-05-19 18:40:45 +02:00
"jest": "^26.0.1",
2020-05-18 09:47:53 +02:00
"prettier": "^2.0.5",
2020-06-04 09:24:26 +02:00
"ts-jest": "^26.1.0",
"typescript": "^3.9.5",
2020-05-18 09:47:53 +02:00
"webpack": "^4.43.0"
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"
]
}
}