-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 3.07 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
{
"name": "@commencis/starter-react-vite",
"version": "1.2.6",
"build": "0",
"description": "Commencis Starter - React Vite",
"author": "Commencis WEB Team",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=20.18"
},
"packageManager": "[email protected]",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"lint:check:types": "tsc --noEmit",
"lint:check:js": "eslint .",
"lint:fix:js": "eslint . --fix",
"lint:check:css": "stylelint **/*.{css,scss}",
"lint:fix:css": "stylelint **/*.{css,scss} --fix",
"lint:check:format": "prettier **/*.{json,md} --check",
"lint:fix:format": "prettier **/*.{json,md} --write",
"lint": "pnpm run \"/^lint:check:.*/\"",
"lint:fix": "pnpm run \"/^lint:fix:.*/\"",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"changeset": "changeset",
"version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:review": "pnpm run lint && pnpm run test",
"generate:worker": "pnpm exec msw init ./public --save",
"prepare": "husky",
"precommit": "lint-staged"
},
"dependencies": {
"@hookform/resolvers": "3.9.1",
"@reduxjs/toolkit": "2.5.0",
"axios": "1.7.9",
"i18next": "23.16.8",
"i18next-resources-to-backend": "1.2.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.54.1",
"react-i18next": "15.1.4",
"react-redux": "9.2.0",
"react-router-dom": "6.28.0",
"zod": "3.24.1"
},
"devDependencies": {
"@changesets/cli": "2.27.11",
"@commencis/commitlint-config": "1.1.1",
"@commencis/eslint-config": "1.5.2",
"@commencis/eslint-plugin": "1.2.1",
"@commencis/prettier-config": "1.1.1",
"@commencis/stylelint-config": "1.3.0",
"@storybook/addon-a11y": "8.4.7",
"@storybook/addon-actions": "8.4.7",
"@storybook/addon-docs": "8.4.7",
"@storybook/addon-essentials": "8.4.7",
"@storybook/addon-interactions": "8.4.7",
"@storybook/addon-links": "8.4.7",
"@storybook/blocks": "8.4.7",
"@storybook/react": "8.4.7",
"@storybook/react-vite": "8.4.7",
"@storybook/test": "8.4.7",
"@svitejs/changesets-changelog-github-compact": "1.2.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"@types/node": "22.10.2",
"@types/react": "18.3.17",
"@types/react-dom": "18.3.5",
"@vitejs/plugin-react-swc": "3.7.2",
"@vitest/coverage-v8": "2.1.8",
"commitlint": "19.6.1",
"eslint": "9.17.0",
"husky": "9.1.7",
"jsdom": "25.0.1",
"lint-staged": "15.2.11",
"msw": "2.7.0",
"prettier": "3.4.2",
"sass-embedded": "1.83.0",
"storybook": "8.4.7",
"stylelint": "16.12.0",
"typescript": "5.7.2",
"vite": "5.4.11",
"vite-plugin-svgr": "4.3.0",
"vitest": "2.1.8"
},
"msw": {
"workerDirectory": [
"public"
]
}
}