2021-03-09 20:02:40 +01:00
|
|
|
{
|
|
|
|
|
"name": "lingva-translate",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "next dev",
|
2021-03-09 20:33:12 +01:00
|
|
|
"debug": "NODE_OPTIONS='--inspect' next dev",
|
2021-03-09 20:02:40 +01:00
|
|
|
"build": "next build",
|
2021-03-11 16:46:55 +01:00
|
|
|
"start": "next start",
|
|
|
|
|
"test": "jest"
|
2021-03-09 20:02:40 +01:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2021-03-10 01:16:52 +01:00
|
|
|
"cheerio": "^1.0.0-rc.5",
|
2021-03-09 20:02:40 +01:00
|
|
|
"next": "10.0.8",
|
|
|
|
|
"react": "17.0.1",
|
|
|
|
|
"react-dom": "17.0.1"
|
2021-03-09 20:33:12 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2021-03-11 16:46:55 +01:00
|
|
|
"@testing-library/jest-dom": "^5.11.9",
|
|
|
|
|
"@testing-library/react": "^11.2.5",
|
|
|
|
|
"@testing-library/user-event": "^12.8.3",
|
2021-03-12 16:18:26 +01:00
|
|
|
"@types/faker": "^5.1.7",
|
2021-03-11 16:46:55 +01:00
|
|
|
"@types/jest": "^26.0.20",
|
2021-03-09 20:33:12 +01:00
|
|
|
"@types/node": "^14.14.33",
|
|
|
|
|
"@types/react": "^17.0.3",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^4.0.0",
|
|
|
|
|
"@typescript-eslint/parser": "^4.0.0",
|
|
|
|
|
"babel-eslint": "^10.0.0",
|
|
|
|
|
"eslint": "^7.5.0",
|
|
|
|
|
"eslint-config-react-app": "^6.0.0",
|
|
|
|
|
"eslint-plugin-flowtype": "^5.2.0",
|
|
|
|
|
"eslint-plugin-import": "^2.22.0",
|
2021-03-11 16:46:55 +01:00
|
|
|
"eslint-plugin-jest": "^24.0.0",
|
2021-03-09 20:33:12 +01:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.3.1",
|
|
|
|
|
"eslint-plugin-react": "^7.20.3",
|
|
|
|
|
"eslint-plugin-react-hooks": "^4.0.8",
|
2021-03-11 16:46:55 +01:00
|
|
|
"eslint-plugin-testing-library": "^3.9.0",
|
2021-03-12 16:18:26 +01:00
|
|
|
"faker": "^5.4.0",
|
2021-03-11 16:46:55 +01:00
|
|
|
"jest": "^26.6.3",
|
2021-03-12 16:18:26 +01:00
|
|
|
"jest-fetch-mock": "^3.0.3",
|
2021-03-09 20:33:12 +01:00
|
|
|
"typescript": "^4.2.3"
|
|
|
|
|
},
|
|
|
|
|
"eslintConfig": {
|
|
|
|
|
"extends": [
|
2021-03-11 16:46:55 +01:00
|
|
|
"react-app",
|
|
|
|
|
"react-app/jest"
|
2021-03-09 20:33:12 +01:00
|
|
|
]
|
2021-03-11 16:46:55 +01:00
|
|
|
},
|
|
|
|
|
"babel": {
|
2021-03-12 16:18:26 +01:00
|
|
|
"presets": [
|
|
|
|
|
"next/babel"
|
|
|
|
|
]
|
2021-03-09 20:02:40 +01:00
|
|
|
}
|
|
|
|
|
}
|