-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "starwars-fan-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --mode development",
"pre-build": "tsc && npm run lint:eslint:check && npm run test",
"build": "tsc && vite build",
"preview": "vite preview",
"lint:eslint:check": "eslint --max-warnings 0 \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:eslint:fix": "eslint --max-warnings 0 \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"generate:translations": "i18next 'src/**/*.ts' 'src/**/*.tsx' 'pages/**/*.ts' 'pages/**/*.tsx' --config i18next-parser.config.cjs",
"test": "jest --config jest.config.cjs",
"test:watch": "jest --cache --watch --maxWorkers=1 --config jest.config.cjs"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.0",
"@mui/x-data-grid": "^6.2.0",
"@reduxjs/toolkit": "^1.9.4",
"@types/react-router-dom": "^5.3.3",
"axios": "^1.3.5",
"i18next": "^22.4.14",
"i18next-http-middleware": "^3.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.10.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"i18next-parser": "^7.7.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"typescript": "^4.9.3",
"vite": "^4.2.0"
}
}