1
0
mirror of https://github.com/oceanprotocol/status synced 2024-11-22 17:50:12 +01:00
status/package.json

69 lines
2.0 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",
"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",
"axios": "^0.19.2",
2019-12-12 20:48:00 +01:00
"ethereumjs-units": "^0.2.0",
"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": {
"@next/bundle-analyzer": "^9.2.1",
"@testing-library/jest-dom": "^5.0.1",
"@testing-library/react": "^9.4.0",
"@types/bn.js": "^4.11.6",
"@types/jest": "^25.1.0",
2019-12-07 23:02:18 +01:00
"@types/next-seo": "^1.10.0",
"@types/node": "^12.12.25",
"@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",
"eslint": "^6.8.0",
2019-09-16 14:53:19 +02:00
"eslint-config-oceanprotocol": "^1.5.0",
"eslint-config-prettier": "^6.10.0",
"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",
"ts-jest": "^24.3.0",
"typescript": "^3.7.5",
"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"
]
}
}