mirror of
https://github.com/kremalicious/ipfs.git
synced 2024-11-22 01:37:07 +01:00
388ba6e0d7
Bumps [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) from 7.21.2 to 7.21.3. - [Release notes](https://github.com/yannickcr/eslint-plugin-react/releases) - [Changelog](https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md) - [Commits](https://github.com/yannickcr/eslint-plugin-react/compare/v7.21.2...v7.21.3) Signed-off-by: dependabot[bot] <support@github.com>
60 lines
1.7 KiB
JSON
60 lines
1.7 KiB
JSON
{
|
|
"name": "@kremalicious/ipfs",
|
|
"version": "1.0.0",
|
|
"description": "A public IPFS node.",
|
|
"scripts": {
|
|
"start": "next dev",
|
|
"build": "next build",
|
|
"serve": "next start",
|
|
"test": "npm run lint && NODE_ENV=test jest",
|
|
"test:watch": "npm run lint && NODE_ENV=test jest --watch",
|
|
"lint": "eslint --ignore-path .gitignore --ext .js --ext .tsx --ext .ts .",
|
|
"format": "prettier --ignore-path .gitignore '**/*.{css,yml,js,jsx,ts,tsx,json}' --write",
|
|
"analyze": "ANALYZE=true next build"
|
|
},
|
|
"author": "Matthias Kretschmann <m@kretschmann.io>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"axios": "^0.20.0",
|
|
"ipfs-http-client": "^47.0.1",
|
|
"next": "^9.5.3",
|
|
"next-seo": "^4.10.0",
|
|
"next-svgr": "^0.0.2",
|
|
"react": "^16.13.0",
|
|
"react-dom": "^16.13.0",
|
|
"react-dropzone": "^11.2.0",
|
|
"use-dark-mode": "^2.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@next/bundle-analyzer": "^9.5.3",
|
|
"@testing-library/jest-dom": "^5.11.4",
|
|
"@testing-library/react": "^11.0.4",
|
|
"@types/jest": "^26.0.14",
|
|
"@types/next-seo": "^1.10.0",
|
|
"@types/node": "^14.11.2",
|
|
"@types/react": "^16.9.49",
|
|
"@typescript-eslint/eslint-plugin": "^4.0.0",
|
|
"@typescript-eslint/parser": "^3.10.1",
|
|
"cssnano": "^4.1.10",
|
|
"eslint": "^7.10.0",
|
|
"eslint-config-prettier": "^6.12.0",
|
|
"eslint-plugin-jsx-a11y": "^6.3.1",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"eslint-plugin-react": "^7.21.3",
|
|
"jest": "^26.4.2",
|
|
"postcss-preset-env": "^6.7.0",
|
|
"prettier": "^2.1.2",
|
|
"ts-jest": "^26.4.0",
|
|
"typescript": "^4.0.3"
|
|
},
|
|
"engines": {
|
|
"node": "10.x"
|
|
},
|
|
"browserslist": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not ie <= 11",
|
|
"not op_mini all"
|
|
]
|
|
}
|