fedisearch/application/package.json

91 wiersze
2.4 KiB
JSON

{
"name": "fedisearch",
"version": "1.0.0",
"description": "FediSearch",
"main": "app.js",
"private": true,
"author": "Štěpán Škorpil",
"license": "MIT",
"scripts": {
"dev": "next dev ./src --hostname 0.0.0.0",
"build": "next build ./src",
"start": "next start ./src",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@datapunt/matomo-tracker-js": "^0.5.1",
"@elastic/elasticsearch": "^8.2.1",
"@fortawesome/fontawesome-common-types": "^6.2.0",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@hookform/resolvers": "^2.9.10",
"@popperjs/core": "^2.11.6",
"@svgr/webpack": "^6.2.1",
"apollo-server-micro": "^3.10.1",
"axios": "^0.21.1",
"bootstrap": "^5.1.3",
"graphql": "^16.5.0",
"micro": "^9.4.1",
"micro-cors": "^0.1.1",
"next": "^12.2.5",
"nexus": "^1.3.0",
"node-cache": "^5.1.2",
"npmlog": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.45.1",
"striptags": "^3.2.0",
"typescript-collections": "^1.3.3",
"zod": "^3.11.6"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.0.0",
"@types/jest": "^29.2.0",
"@types/micro-cors": "^0.1.2",
"@types/node": "^18.7.18",
"@types/npmlog": "^4.1.3",
"@types/react": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.0.1",
"eslint-config-standard-react": "^12.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"jest": "^29.2.2",
"ts-jest": "^29.0.3",
"typescript": "^4.3.5"
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"standard-with-typescript",
"standard-react"
],
"parserOptions": {
"project": [
"tsconfig.json"
]
},
"rules": {
"@typescript-eslint/no-misused-promises": [
"error",
{
"checksVoidReturn": {
"attributes": false
}
}
]
}
}
}