ipfs/package.json

61 lines
1.7 KiB
JSON
Raw Normal View History

2019-10-20 01:40:55 +02:00
{
"name": "@kremalicious/ipfs",
"version": "1.0.0",
"description": "A public IPFS node.",
2019-10-20 01:40:55 +02:00
"scripts": {
"start": "next dev",
"build": "next build",
"serve": "next start",
2019-12-08 17:27:44 +01:00
"test": "npm run lint && NODE_ENV=test jest",
"test:watch": "npm run lint && NODE_ENV=test jest --watch",
2020-07-08 01:30:27 +02:00
"lint": "eslint --ignore-path .gitignore --ext .js --ext .tsx --ext .ts .",
2019-12-08 17:27:44 +01:00
"format": "prettier --ignore-path .gitignore '**/*.{css,yml,js,jsx,ts,tsx,json}' --write",
"analyze": "ANALYZE=true next build"
2019-10-20 01:40:55 +02:00
},
"author": "Matthias Kretschmann <m@kretschmann.io>",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
2021-09-12 16:41:30 +02:00
"ipfs-http-client": "^52.0.3",
"next": "^10.0.7",
"next-seo": "^4.20.0",
2019-12-07 14:40:51 +01:00
"next-svgr": "^0.0.2",
2021-02-01 00:49:11 +01:00
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-dropzone": "^11.3.1",
2019-10-20 01:40:55 +02:00
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.0.7",
2021-02-01 00:49:11 +01:00
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
2021-02-01 00:49:11 +01:00
"@types/jest": "^26.0.20",
"@types/next-seo": "^2.1.2",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"cssnano": "^4.1.10",
"eslint": "^7.21.0",
"eslint-config-prettier": "^7.2.0",
2021-02-01 00:49:11 +01:00
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
2021-09-12 16:41:30 +02:00
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"postcss-preset-env": "^6.7.0",
2021-02-01 00:49:11 +01:00
"prettier": "^2.2.1",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
2019-10-20 01:40:55 +02:00
},
"engines": {
2021-09-12 16:41:30 +02:00
"node": "14.x"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
2019-10-20 01:40:55 +02:00
}