2019-10-20 01:40:55 +02:00
|
|
|
{
|
|
|
|
"name": "@kremalicious/ipfs",
|
|
|
|
"version": "1.0.0",
|
2019-10-20 19:59:22 +02:00
|
|
|
"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-13 23:55:29 +02:00
|
|
|
"test": "npm run lint && npm run type-check && NODE_ENV=test jest -c test/__config__/jest.config.js",
|
|
|
|
"test:watch": "npm run lint && npm run type-check && NODE_ENV=test jest -c test/__config__/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": {
|
2022-02-14 00:17:31 +01:00
|
|
|
"@svgr/webpack": "^6.2.1",
|
2022-02-14 00:06:10 +01:00
|
|
|
"axios": "^0.26.0",
|
|
|
|
"ipfs-http-client": "^56.0.1",
|
|
|
|
"next": "^12.0.10",
|
|
|
|
"next-seo": "^5.1.0",
|
2021-09-12 17:00:43 +02:00
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-dom": "^17.0.2",
|
2022-02-14 00:06:10 +01:00
|
|
|
"react-dropzone": "^12.0.4",
|
2019-10-20 01:40:55 +02:00
|
|
|
"use-dark-mode": "^2.3.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-14 00:06:10 +01:00
|
|
|
"@babel/preset-typescript": "^7.16.7",
|
|
|
|
"@next/bundle-analyzer": "^12.0.10",
|
|
|
|
"@testing-library/jest-dom": "^5.16.2",
|
|
|
|
"@testing-library/react": "^12.1.2",
|
|
|
|
"@types/jest": "^27.4.0",
|
|
|
|
"@types/node": "^17.0.17",
|
|
|
|
"@types/react": "^17.0.39",
|
|
|
|
"eslint": "^8.9.0",
|
|
|
|
"eslint-config-next": "12.0.10",
|
2021-09-12 17:00:43 +02:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2022-02-14 00:06:10 +01:00
|
|
|
"eslint-plugin-testing-library": "^5.0.5",
|
2021-09-13 23:55:29 +02:00
|
|
|
"identity-obj-proxy": "^3.0.0",
|
2022-02-14 00:06:10 +01:00
|
|
|
"jest": "^27.5.1",
|
|
|
|
"prettier": "^2.5.1",
|
|
|
|
"typescript": "^4.5.5"
|
2019-10-20 01:40:55 +02:00
|
|
|
},
|
|
|
|
"engines": {
|
2022-02-14 00:17:31 +01:00
|
|
|
"node": ">=14.x"
|
2019-10-20 19:59:22 +02:00
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not ie <= 11",
|
|
|
|
"not op_mini all"
|
|
|
|
]
|
2019-10-20 01:40:55 +02:00
|
|
|
}
|