ipfs/package.json

52 lines
1.4 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",
"test": "eslint --ignore-path .gitignore '**/*.{js,jsx,ts,tsx}'",
"format": "prettier --ignore-path .gitignore '**/*.{css,yml,js,jsx,ts,tsx,json}' --write"
2019-10-20 01:40:55 +02:00
},
"author": "Matthias Kretschmann <m@kretschmann.io>",
"license": "MIT",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"axios": "^0.19.0",
2019-12-07 14:40:51 +01:00
"ipfs-http-client": "^40.0.1",
"next": "^9.1.4",
"next-seo": "^3.1.0",
"next-svgr": "^0.0.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-dropzone": "^10.2.1",
2019-10-20 01:40:55 +02:00
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"@types/next-seo": "^1.10.0",
2019-12-07 14:40:51 +01:00
"@types/node": "^12.12.14",
"@types/react": "^16.9.15",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"cssnano": "^4.1.10",
2019-12-07 14:40:51 +01:00
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
2019-10-20 01:40:55 +02:00
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
2019-12-07 14:40:51 +01:00
"eslint-plugin-react": "^7.17.0",
"postcss-preset-env": "^6.7.0",
2019-12-07 14:40:51 +01:00
"prettier": "^1.19.1",
"typescript": "^3.7.3"
2019-10-20 01:40:55 +02:00
},
"engines": {
"node": "10.x"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
2019-10-20 01:40:55 +02:00
}