1
0
mirror of https://github.com/kremalicious/ipfs.git synced 2024-06-15 17:03:32 +02:00
ipfs/package.json

60 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",
"lint": "eslint --ignore-path .gitignore --ext .js .",
"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": {
2020-03-10 03:57:00 +01:00
"axios": "^0.19.2",
"ipfs-http-client": "^44.0.3",
2020-03-10 03:57:00 +01:00
"next": "^9.3.0",
"next-seo": "^4.4.0",
2019-12-07 14:40:51 +01:00
"next-svgr": "^0.0.2",
2020-03-10 03:57:00 +01:00
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-dropzone": "^11.0.1",
2019-10-20 01:40:55 +02:00
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
2020-03-10 03:57:00 +01:00
"@next/bundle-analyzer": "^9.3.0",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^10.0.4",
"@types/jest": "^26.0.0",
2019-10-20 01:40:55 +02:00
"@types/next-seo": "^1.10.0",
"@types/node": "^14.0.1",
2020-03-10 03:57:00 +01:00
"@types/react": "^16.9.23",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"cssnano": "^4.1.10",
2020-03-10 03:57:00 +01:00
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
2019-10-20 01:40:55 +02:00
"eslint-plugin-jsx-a11y": "^6.2.3",
2020-03-10 03:57:00 +01:00
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"jest": "^25.1.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
2020-03-10 03:57:00 +01:00
"ts-jest": "^25.2.1",
"typescript": "^3.8.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
}