-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.4 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.4 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": "foundations-app",
"version": "0.0.1",
"type": "module",
"private": true,
"description": "Description",
"repository": {
"type": "git",
"url": "git+git@github.com:reapit/apps.git"
},
"license": "MIT",
"author": "Author",
"main": "./src/index.ts",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"test": "vitest --watch --coverage=false",
"test:run": "vitest --silent --run --passWithNoTests",
"lint": "eslint --cache --ext=ts,tsx,js src",
"check": "tsc --noEmit --skipLibCheck",
"upgrade:deps": "yarn upgrade-interactive"
},
"dependencies": {
"@hookform/resolvers": "^4.1.0",
"@linaria/core": "^6.2.0",
"@linaria/react": "^6.2.1",
"@reapit/connect-session": "^6.1.3",
"@reapit/elements": "^4.3.2",
"@reapit/foundations-ts-definitions": "^1.3.58",
"@tanstack/react-query": "^5.66.3",
"axios": "^1.7.9",
"dayjs": "^1.11.13",
"just-debounce-it": "^3.2.0",
"qs": "^6.14.0",
"query-string": "9.1.1",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-hook-form": "^7.51.3",
"react-router": "^6.22.3",
"react-router-dom": "^6.22.3",
"typescript": "^5.8.2",
"yup": "^1.6.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.66.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/eslint": "^9.6.1",
"@types/node": "^20.12.7",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.0.5",
"@vitest/ui": "^3.0.5",
"@wyw-in-js/vite": "^0.5.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"happy-dom": "^17.1.0",
"mockdate": "^3.0.5",
"prettier": "^3.5.1",
"ts-node": "^10.9.2",
"vite": "^6.1.0",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-pwa": "^0.21.1",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^3.0.5"
},
"packageManager": "yarn@4.10.3"
}