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",
|
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",
|
2020-07-08 01:30:27 +02:00
|
|
|
"lint": "eslint --ignore-path .gitignore --ext .js --ext .tsx --ext .ts .",
|
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": {
|
2020-08-24 06:31:55 +02:00
|
|
|
"axios": "^0.20.0",
|
2020-09-07 11:02:41 +02:00
|
|
|
"ipfs-http-client": "^46.1.1",
|
|
|
|
"next": "^9.5.3",
|
2020-08-03 06:41:21 +02:00
|
|
|
"next-seo": "^4.7.3",
|
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",
|
2020-09-14 06:33:10 +02:00
|
|
|
"react-dropzone": "^11.1.0",
|
2019-10-20 01:40:55 +02:00
|
|
|
"use-dark-mode": "^2.3.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-09-07 11:02:41 +02:00
|
|
|
"@next/bundle-analyzer": "^9.5.3",
|
2020-08-24 12:12:38 +02:00
|
|
|
"@testing-library/jest-dom": "^5.11.4",
|
2020-09-07 11:02:41 +02:00
|
|
|
"@testing-library/react": "^11.0.2",
|
|
|
|
"@types/jest": "^26.0.13",
|
2019-10-20 01:40:55 +02:00
|
|
|
"@types/next-seo": "^1.10.0",
|
2020-09-07 11:04:52 +02:00
|
|
|
"@types/node": "^14.6.4",
|
2020-09-07 11:02:41 +02:00
|
|
|
"@types/react": "^16.9.49",
|
2020-09-07 11:11:34 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.0.0",
|
2020-08-31 10:30:03 +02:00
|
|
|
"@typescript-eslint/parser": "^3.10.1",
|
2019-10-20 19:59:22 +02:00
|
|
|
"cssnano": "^4.1.10",
|
2020-09-07 11:02:41 +02:00
|
|
|
"eslint": "^7.8.1",
|
2020-07-02 20:26:44 +02:00
|
|
|
"eslint-config-prettier": "^6.11.0",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.3.1",
|
|
|
|
"eslint-plugin-prettier": "^3.1.4",
|
2020-08-17 09:49:34 +02:00
|
|
|
"eslint-plugin-react": "^7.20.6",
|
2020-08-24 06:28:53 +02:00
|
|
|
"jest": "^26.4.2",
|
2019-10-20 19:59:22 +02:00
|
|
|
"postcss-preset-env": "^6.7.0",
|
2020-08-31 09:56:55 +02:00
|
|
|
"prettier": "^2.1.1",
|
|
|
|
"ts-jest": "^26.3.0",
|
2020-09-07 11:02:41 +02:00
|
|
|
"typescript": "^4.0.2"
|
2019-10-20 01:40:55 +02:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": "10.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
|
|
|
}
|