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-10-03 20:51:36 +02:00
|
|
|
"start": "next start --port ${PORT-3000}",
|
2021-03-13 21:38:34 +01:00
|
|
|
"test": "jest",
|
2021-03-19 14:07:15 +01:00
|
|
|
"cy:open": "cypress open",
|
|
|
|
|
"cy:run": "cypress run"
|
2021-03-09 20:02:40 +01:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2022-02-24 21:33:17 +01:00
|
|
|
"@chakra-ui/icons": "1.0.15",
|
|
|
|
|
"@chakra-ui/react": "1.6.6",
|
2021-06-12 22:44:56 +02:00
|
|
|
"@emotion/react": "^11",
|
|
|
|
|
"@emotion/styled": "^11",
|
2021-08-28 15:55:41 +02:00
|
|
|
"apollo-server-micro": "^2.25.2",
|
2021-06-12 22:44:56 +02:00
|
|
|
"cheerio": "^1.0.0-rc.10",
|
|
|
|
|
"framer-motion": "^4",
|
2022-02-24 21:33:17 +01:00
|
|
|
"graphql": "^15.8.0",
|
|
|
|
|
"next": "12.1.0",
|
|
|
|
|
"next-pwa": "^5.4.4",
|
|
|
|
|
"nextjs-cors": "^2.1.0",
|
2021-04-30 23:11:26 +02:00
|
|
|
"react": "17.0.2",
|
|
|
|
|
"react-dom": "17.0.2",
|
2022-02-24 21:33:17 +01:00
|
|
|
"react-hotkeys-hook": "^3.4.4",
|
|
|
|
|
"react-icons": "^4.3.1",
|
|
|
|
|
"user-agents": "^1.0.937"
|
2021-03-09 20:33:12 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-02-24 21:33:17 +01:00
|
|
|
"@testing-library/cypress": "^8.0.2",
|
|
|
|
|
"@testing-library/jest-dom": "^5.16.2",
|
|
|
|
|
"@testing-library/react": "^12.1.3",
|
|
|
|
|
"@testing-library/user-event": "^13.5.0",
|
2021-06-12 22:44:56 +02:00
|
|
|
"@types/faker": "^5.5.6",
|
2022-02-24 21:33:17 +01:00
|
|
|
"@types/jest": "^27.4.1",
|
|
|
|
|
"@types/node": "^17.0.21",
|
|
|
|
|
"@types/react": "^17.0.39",
|
|
|
|
|
"@types/user-agents": "^1.0.2",
|
2021-08-28 15:55:41 +02:00
|
|
|
"apollo-server-testing": "^2.25.2",
|
2022-02-24 21:33:17 +01:00
|
|
|
"babel-eslint": "^10.1.0",
|
|
|
|
|
"cypress": "^9.5.0",
|
|
|
|
|
"eslint": "^8.9.0",
|
|
|
|
|
"eslint-config-next": "^12.1.0",
|
|
|
|
|
"eslint-config-react-app": "^7.0.0",
|
|
|
|
|
"eslint-plugin-cypress": "^2.12.1",
|
2021-06-12 22:44:56 +02:00
|
|
|
"faker": "^5.5.3",
|
2022-02-24 21:33:17 +01:00
|
|
|
"jest": "^27.5.1",
|
2021-03-12 16:18:26 +01:00
|
|
|
"jest-fetch-mock": "^3.0.3",
|
2022-02-24 21:33:17 +01:00
|
|
|
"node-mocks-http": "^1.11.0",
|
|
|
|
|
"typescript": "^4.5.5",
|
|
|
|
|
"wait-on": "^6.0.1"
|
2021-03-09 20:33:12 +01:00
|
|
|
},
|
|
|
|
|
"eslintConfig": {
|
|
|
|
|
"extends": [
|
2021-03-11 16:46:55 +01:00
|
|
|
"react-app",
|
2021-03-13 21:38:34 +01:00
|
|
|
"react-app/jest",
|
2021-08-28 15:55:41 +02:00
|
|
|
"plugin:cypress/recommended",
|
|
|
|
|
"next"
|
2022-02-24 21:33:17 +01:00
|
|
|
],
|
|
|
|
|
"overrides": [
|
|
|
|
|
{
|
|
|
|
|
"files": ["cypress/integration/*.ts"],
|
|
|
|
|
"rules": {
|
|
|
|
|
"testing-library/await-async-query": "off",
|
|
|
|
|
"testing-library/prefer-screen-queries": "off"
|
|
|
|
|
}
|
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
}
|