-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.25 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@yadoms-cs/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"serve": "nx serve yadoms-cs",
"build": "nx build yadoms-cs",
"plugins:run:storybook": "nx storybook pages-plugins",
"plugins:build:storybook": "nx build-storybook pages-plugins",
"test": "nx test yadoms-cs",
"allTest": "nx run-many --target=test",
"lint": "nx workspace-lint",
"eslint:fix": "eslint --fix",
"pre-commit": "lint-staged",
"affected:lint": "nx affected:lint",
"format:write": "nx format:write",
"format:check": "nx format:check",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@emotion/react": "^11.11.4",
"@mantine/core": "^7.12.0",
"@mantine/dates": "^7.12.0",
"@mantine/form": "^7.12.0",
"@mantine/hooks": "^7.12.0",
"@mantine/modals": "^7.12.0",
"@mantine/notifications": "^7.12.0",
"@reduxjs/toolkit": "2.2.5",
"@tabler/icons-react": "^3.5.0",
"@tanstack/react-query": "^5.39.0",
"@tanstack/react-query-devtools": "^5.39.0",
"axios": "^1.7.2",
"dayjs": "^1.11.11",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^8.0.0",
"mantine-react-table": "^2.0.0-beta.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "^14.1.2",
"react-redux": "9.1.2",
"react-router-dom": "^6.23.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@nx/cypress": "~19.1.0",
"@nx/eslint": "19.1.0",
"@nx/eslint-plugin": "19.1.0",
"@nx/js": "19.1.0",
"@nx/linter": "~19.1.0",
"@nx/react": "19.1.0",
"@nx/storybook": "~19.1.0",
"@nx/vite": "19.1.0",
"@nx/web": "19.1.0",
"@nx/workspace": "19.1.0",
"@storybook/addon-docs": "8.1.3",
"@storybook/addon-essentials": "8.1.3",
"@storybook/core-common": "^8.1.3",
"@storybook/core-server": "8.1.3",
"@storybook/react-vite": "^8.1.3",
"@swc-node/register": "~1.9.1",
"@swc/cli": "~0.3.12",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@tanstack/eslint-plugin-query": "^5.35.6",
"@testing-library/react": "15.0.6",
"@types/node": "18.16.9",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.3.0",
"@typescript-eslint/parser": "^7.3.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.3.1",
"cypress": "13.10.0",
"eslint": "~8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.13.4",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"lint-staged": "^15.2.5",
"husky": "^9.0.11",
"jsdom": "~22.1.0",
"nx": "19.1.0",
"nx-cloud": "~19.0.0",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.15.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^2.6.2",
"typescript": "~5.4.2",
"vite": "~5.0.0",
"vitest": "^1.3.1"
},
"nx": {
"includedScripts": []
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx, jsx}": [
"eslint --quiet --fix"
],
"*.{json,md,html,js,jsx,ts,tsx}": [
"prettier --write"
]
}
}