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": {
|
2021-01-05 16:49:51 +01:00
|
|
|
"axios": "^0.21.1",
|
2021-01-11 10:58:48 +01:00
|
|
|
"ipfs-http-client": "^48.1.3",
|
2020-10-17 13:36:37 +02:00
|
|
|
"next": "^9.5.5",
|
2021-01-11 10:58:48 +01:00
|
|
|
"next-seo": "^4.17.0",
|
2019-12-07 14:40:51 +01:00
|
|
|
"next-svgr": "^0.0.2",
|
2020-10-17 13:36:37 +02:00
|
|
|
"react": "^16.14.0",
|
|
|
|
"react-dom": "^16.14.0",
|
2020-09-21 06:05:57 +02:00
|
|
|
"react-dropzone": "^11.2.0",
|
2019-10-20 01:40:55 +02:00
|
|
|
"use-dark-mode": "^2.3.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-10-17 13:36:37 +02:00
|
|
|
"@next/bundle-analyzer": "^9.5.5",
|
2021-01-01 05:05:08 +01:00
|
|
|
"@testing-library/jest-dom": "^5.11.8",
|
2020-10-17 13:39:26 +02:00
|
|
|
"@testing-library/react": "^11.1.0",
|
2021-01-01 05:20:51 +01:00
|
|
|
"@types/jest": "^26.0.19",
|
2019-10-20 01:40:55 +02:00
|
|
|
"@types/next-seo": "^1.10.0",
|
2021-01-11 11:06:33 +01:00
|
|
|
"@types/node": "^14.14.20",
|
2020-10-17 13:38:20 +02:00
|
|
|
"@types/react": "^16.9.53",
|
2021-01-01 05:19:44 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.11.1",
|
2020-10-17 13:36:37 +02:00
|
|
|
"@typescript-eslint/parser": "^4.4.1",
|
2019-10-20 19:59:22 +02:00
|
|
|
"cssnano": "^4.1.10",
|
2020-10-17 13:36:37 +02:00
|
|
|
"eslint": "^7.11.0",
|
|
|
|
"eslint-config-prettier": "^6.13.0",
|
2020-07-02 20:26:44 +02:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.3.1",
|
|
|
|
"eslint-plugin-prettier": "^3.1.4",
|
2021-01-01 05:09:21 +01:00
|
|
|
"eslint-plugin-react": "^7.22.0",
|
2021-01-11 11:06:41 +01:00
|
|
|
"jest": "^26.6.3",
|
2019-10-20 19:59:22 +02:00
|
|
|
"postcss-preset-env": "^6.7.0",
|
2020-09-21 12:00:20 +02:00
|
|
|
"prettier": "^2.1.2",
|
2021-01-11 11:09:51 +01:00
|
|
|
"ts-jest": "^26.4.4",
|
2020-09-21 12:00:19 +02:00
|
|
|
"typescript": "^4.0.3"
|
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
|
|
|
}
|