-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.51 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": "mentor-playground",
"version": "1.1.0",
"description": "A collection of code pieces to show the concepts of React & TypeScript in a pragmatic way by following the source code and the tests",
"keywords": [
"react",
"training",
"typescript",
"mentoring"
],
"license": "MIT",
"private": true,
"main": "src/index.tsx",
"type": "module",
"dependencies": {
"@emotion/css": "^11.13.0",
"lodash": "^4.17.21",
"react": "19.0.0-rc-2d16326d-20240930",
"react-dom": "19.0.0-rc-2d16326d-20240930",
"react-error-boundary": "^4.0.13",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.2",
"redux": "^5.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^3.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/jest-in-case": "^1.0.9",
"@types/lodash": "^4.17.9",
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"@types/react-redux": "^7.1.34",
"@types/react-test-renderer": "^18.3.0",
"@types/redux-logger": "^3.0.13",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vitejs/plugin-react-swc": "^3.7.1",
"alex": "^11.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "4.6.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-in-case": "^1.0.2",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"react-test-renderer": "^18.3.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2",
"vite": "^5.4.8"
},
"overrides": {
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest",
"check:all": "yarn run check:docs && yarn run check:code",
"check:docs": "alex *.md src/**/*.md",
"check:code": "yarn run lint",
"lint": "eslint 'src/**/*.{js*,ts*}'"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "jsdom"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}