ipfs/package.json

55 lines
1.5 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",
2021-09-12 22:30:45 +02:00
"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",
2021-09-13 22:29:05 +02:00
"lint": "next lint",
2021-09-12 20:57:02 +02:00
"type-check": "tsc --noEmit",
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": {
2021-09-12 17:00:43 +02:00
"axios": "^0.21.4",
2021-09-12 16:41:30 +02:00
"ipfs-http-client": "^52.0.3",
2021-09-12 17:00:43 +02:00
"next": "^11.1.2",
"next-seo": "^4.26.0",
2019-12-07 14:40:51 +01:00
"next-svgr": "^0.0.2",
2021-09-12 17:00:43 +02:00
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.4",
2019-10-20 01:40:55 +02:00
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
2021-09-12 22:30:45 +02:00
"@babel/preset-typescript": "^7.15.0",
2021-09-12 17:00:43 +02:00
"@next/bundle-analyzer": "^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",
2021-09-12 22:30:45 +02:00
"eslint": "^7.32.0",
2021-09-13 22:29:05 +02:00
"eslint-config-next": "11.1.2",
2021-09-12 17:00:43 +02:00
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.1.1",
"prettier": "^2.4.0",
"typescript": "^4.4.3"
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
}