-
Notifications
You must be signed in to change notification settings - Fork 144
/
package.json
90 lines (90 loc) · 2.71 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
{
"name": "react-training-workshop",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite-node scripts/start.ts",
"dev": "npm start",
"kill-db-port": "node scripts/kill-db-port 3333",
"install-next": "cd nextjs && npm install",
"install-remix": "cd remix && npm install",
"test": "jest"
},
"dependencies": {
"@googlemaps/js-api-loader": "^1.16.2",
"@headlessui/react": "^2.0.4",
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.3.2",
"@reduxjs/toolkit": "^1.9.3",
"@tanstack/react-query": "^5.0.5",
"babel-plugin-react-compiler": "^0.0.0-experimental-c23de8d-20240515",
"classnames": "^2.3.1",
"dayjs": "^1.10.7",
"eslint": "^8.24.0",
"eslint-plugin-react-compiler": "^0.0.0-experimental-53bb89e-20240515",
"firebase": "^9.6.1",
"json-server": "^0.17.4",
"react": "^19.0.0-rc-915b914b3a-20240515",
"react-dom": "^19.0.0-rc-915b914b3a-20240515",
"react-hook-form": "^7.48.2",
"react-icons": "^4.11.0",
"react-popper": "^2.3.0",
"react-redux": "^7.2.6",
"react-router-dom": "^6.23.1",
"redux": "^4.1.2",
"redux-logger": "^3.0.6",
"zod": "^3.22.2"
},
"overrides": {
"@types/react": "npm:types-react@beta",
"@types/react-dom": "npm:types-react-dom@beta"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^15.0.7",
"@types/concurrently": "^6.4.0",
"@types/jest": "^27.4.0",
"@types/react": "npm:types-react@beta",
"@types/react-dom": "npm:types-react-dom@beta",
"@types/readline-sync": "^1.4.8",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.14",
"concurrently": "^6.3.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.6",
"find-process": "^1.4.5",
"jest": "^27.5.1",
"mock-match-media": "^0.3.0",
"plop": "^3.0.5",
"postcss": "^8.4.27",
"readline-sync": "^1.4.10",
"shelljs": "^0.8.5",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.3",
"typescript": "^5.2.2",
"vite": "^5.4.7",
"vite-node": "^1.6.0"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"tabWidth": 2
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"^~(.*)$": "<rootDir>/react/_full-app/$1",
"\\.(jpg|jpeg|png|gif|svg)$": "<rootDir>/react/_full-app/_mocks/fileMock.js",
"\\.(css|scss)$": "<rootDir>/react/_full-app/_mocks/styleMock.js"
},
"transform": {
"^.+\\.(ts|tsx|js|jsx)$": "ts-jest"
}
}
}