mirror of
https://github.com/kremalicious/ipfs.git
synced 2024-11-21 17:27:06 +01:00
60 lines
1.8 KiB
JSON
60 lines
1.8 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 && npm run type-check && NODE_ENV=test jest -c jest/jest.config.js",
|
|
"test:watch": "npm run lint && npm run type-check && NODE_ENV=test jest -c jest/jest.config.js --watch",
|
|
"lint": "eslint --ignore-path .gitignore --ext .js --ext .tsx --ext .ts .",
|
|
"type-check": "tsc --noEmit",
|
|
"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.21.4",
|
|
"ipfs-http-client": "^52.0.3",
|
|
"next": "^11.1.2",
|
|
"next-seo": "^4.26.0",
|
|
"next-svgr": "^0.0.2",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-dropzone": "^11.3.4",
|
|
"use-dark-mode": "^2.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-typescript": "^7.15.0",
|
|
"@next/bundle-analyzer": "^11.1.2",
|
|
"@next/eslint-plugin-next": "^11.1.2",
|
|
"@testing-library/jest-dom": "^5.14.1",
|
|
"@testing-library/react": "^12.1.0",
|
|
"@types/jest": "^27.0.1",
|
|
"@types/node": "^16.9.1",
|
|
"@types/react": "^17.0.2",
|
|
"@typescript-eslint/eslint-plugin": "^4.31.0",
|
|
"@typescript-eslint/parser": "^4.31.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"eslint-plugin-react": "^7.25.1",
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
"jest": "^27.1.1",
|
|
"prettier": "^2.4.0",
|
|
"typescript": "^4.4.3"
|
|
},
|
|
"engines": {
|
|
"node": "14.x"
|
|
},
|
|
"browserslist": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not ie <= 11",
|
|
"not op_mini all"
|
|
]
|
|
}
|