-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.31 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.31 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "abctasks",
"version": "2.2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview --mode test",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui",
"lint": "eslint --ext .tsx,.ts src",
"lint:fix": "eslint --ext .tsx,.ts src --fix",
"prettier": "prettier --write --config ./.prettierrc src",
"prepare": "husky install",
"gen:css-types": "tcm src"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@farfetched/core": "^0.10.4",
"@farfetched/runtypes": "^0.10.4",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.14.14",
"@mui/lab": "^5.0.0-alpha.108",
"@mui/material": "^5.14.14",
"@mui/x-date-pickers": "^6.16.2",
"@withease/web-api": "^1.0.1",
"atomic-router": "^0.8.0",
"atomic-router-react": "^0.8.5",
"classnames": "^2.3.1",
"compose-function": "^3.0.3",
"dayjs": "^1.11.10",
"effector": "^22.8.7",
"effector-forms": "^1.3.4",
"effector-localstorage": "^1.0.0",
"effector-mui-snacks": "^1.0.0",
"effector-react": "^22.5.4",
"history": "^5.3.0",
"i18next": "^23.6.0",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.2",
"joi": "^17.11.0",
"ky": "^1.1.0",
"patronum": "^1.20.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.3.1",
"runtypes": "^6.7.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.40.1",
"@rollup/plugin-babel": "^6.0.4",
"@types/compose-function": "^0.0.32",
"@types/node": "^20.8.7",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@vitejs/plugin-react": "^4.1.0",
"dotenv": "^16.3.1",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-boundaries": "^3.4.0",
"eslint-plugin-effector": "^0.11.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-sonarjs": "^0.21.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"typed-css-modules": "^0.8.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-pwa": "^0.19.0",
"vite-plugin-static-copy": "^0.17.0"
}
}