-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.45 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.45 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react_base_vite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"debug": "NODE_OPTIONS=--inspect vite",
"build": "tsc && vite build",
"preview": "vite preview",
"graphql": "graphql-codegen --config graphql_codegen.yml",
"lint": "eslint --fix --ext js,ts,tsx src",
"check-types": "tsc --project tsconfig.json",
"commit": "commit",
"e2e:run": "cypress run",
"e2e:open": "cypress open",
"ioc-generate": "inversify-generator",
"prettier-fix": "prettier ./src --write --ignore-unknown",
"prettier-check": "prettier ./src --check --ignore-unknown",
"prepare": "node .husky/install.mjs"
},
"dependencies": {
"@apollo/client": "~3.9.5",
"@front_web_mrmilu/hooks": "~2.1.0",
"@front_web_mrmilu/network": "~2.1.0",
"@front_web_mrmilu/services": "~2.1.0",
"@front_web_mrmilu/utils": "~2.1.0",
"@hookform/resolvers": "~3.3.4",
"@react-spring/web": "~9.7.3",
"@sentry/react": "~7.102.0",
"@sentry/tracing": "~7.102.0",
"@vanilla-extract/css": "~1.14.1",
"@vanilla-extract/recipes": "~0.5.1",
"axios": "~1.7.2",
"class-transformer": "~0.5.1",
"graphql": "~16.8.1",
"i18next": "~23.9.0",
"i18next-http-backend": "~2.4.3",
"i18next-resources-to-backend": "~1.2.0",
"immer": "~10.1.1",
"inversify": "~6.0.2",
"inversify-generator": "~0.1.5",
"lodash": "~4.17.21",
"react": "~18.3.1",
"react-dom": "~18.3.1",
"react-hook-form": "~7.50.1",
"react-i18next": "~14.0.5",
"react-router-dom": "~6.22.1",
"reflect-metadata": "~0.2.1",
"web-vitals": "~3.5.2",
"yup": "~1.4.0",
"zustand": "~4.5.4"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "~7.23.9",
"@commitlint/cli": "~18.6.1",
"@commitlint/config-conventional": "~18.6.2",
"@commitlint/prompt-cli": "~18.6.1",
"@graphql-codegen/cli": "~5.0.2",
"@graphql-codegen/fragment-matcher": "~5.0.2",
"@graphql-codegen/introspection": "~4.0.2",
"@graphql-codegen/near-operation-file-preset": "~3.0.0",
"@graphql-codegen/typescript": "~4.0.4",
"@graphql-codegen/typescript-graphql-files-modules": "~3.0.0",
"@graphql-codegen/typescript-operations": "~4.1.2",
"@rollup/plugin-graphql": "~2.0.4",
"@types/lodash": "~4.17.7",
"@types/node": "~20.11.19",
"@types/react": "~18.3.3",
"@types/react-dom": "~18.3.0",
"@typescript-eslint/eslint-plugin": "~7.0.2",
"@typescript-eslint/parser": "~7.0.2",
"@vanilla-extract/vite-plugin": "~4.0.4",
"@vitejs/plugin-react": "~4.2.1",
"babel-plugin-import-graphql": "2.8.1",
"babel-plugin-inline-react-svg": "2.0.2",
"babel-plugin-transform-typescript-metadata": "0.3.2",
"cypress": "~13.6.4",
"esbuild-plugin-tsc": "0.4.0",
"eslint": "~8.56.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-jsx-a11y": "~6.8.0",
"eslint-plugin-react": "~7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unused-imports": "~3.1.0",
"http-proxy-middleware": "2.0.6",
"husky": "~9.0.11",
"lint-staged": "~15.2.2",
"prettier": "~3.2.5",
"react-app-alias": "2.2.2",
"typescript": "~5.3.3",
"vite": "~5.1.3",
"vite-plugin-svgr": "~4.2.0"
},
"packageManager": "pnpm@9.7.0+sha512.dc09430156b427f5ecfc79888899e1c39d2d690f004be70e05230b72cb173d96839587545d09429b55ac3c429c801b4dc3c0e002f653830a420fa2dd4e3cf9cf"
}