-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
94 lines (94 loc) · 2.73 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
{
"name": "react-examples",
"version": "1.0.0",
"description": "Examples for [React](https://react.dev) and [ReactJS.NET](https://reactjs.net/).",
"repository": {
"type": "git",
"url": "git+https://github.com/rickbeerendonk/react-examples.git"
},
"author": "Rick Beerendonk",
"license": "EUPL-1.2",
"bugs": {
"url": "https://github.com/rickbeerendonk/react-examples/issues"
},
"homepage": "https://github.com/rickbeerendonk/react-examples#readme",
"scripts": {
"clean": "rimraf node_modules",
"eslint": "eslint --cache",
"eslint-fix": "eslint --cache --fix",
"install-experimental": "npm install react@experimental react-dom@experimental",
"prettier": "prettier --list-different '**/*.{json,js,jsx,html,md,mjs,mts,ts,tsx}'",
"prettier-fix": "prettier --write '**/*.{json,js,jsx,html,md,mjs,mts,ts,tsx}'",
"start": "node ./server/server.js",
"test": "npm run eslint && npm run prettier",
"prepare": "husky"
},
"devDependencies": {
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "9.16.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-compiler": "latest",
"eslint-plugin-react-hooks": "5.1.0",
"husky": "9.1.7",
"prettier": "3.4.2",
"rimraf": "6.0.1"
},
"dependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@babel/standalone": "7.26.4",
"@react-spring/web": "9.7.5",
"@stylexjs/stylex": "0.9.3",
"axios": "1.7.7",
"core-js": "3.39.0",
"esbuild": "0.24.0",
"formik": "2.4.6",
"mime-types": "2.1.35",
"prop-types": "15.8.1",
"react": "^19",
"react-dom": "^19",
"react-dom-experimental": "npm:react-dom@experimental",
"react-experimental": "npm:react@experimental",
"react-hook-form": "7.53.2",
"react-redux": "9.1.2",
"react-router": "6.28.0",
"react-router-5": "npm:react-router@5.3.4",
"react-router-dom": "6.28.0",
"react-router-dom-5": "npm:react-router-dom@5.3.4",
"react-transition-group": "4.4.5",
"redux": "5.0.1",
"scheduler": "0.25.0",
"scheduler-next": "npm:scheduler@next",
"styled-components": "6.1.13",
"typescript": "5.7.2"
},
"overrides": {
"react-dom-experimental": {
"react": "^19.0.0"
},
"react-dom-next": {
"react": "^19.0.0"
},
"react-konva": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"react-native": {
"react": "^19.0.0"
},
"react-redux": {
"react": "^19.0.0",
"@types/react": "^19.0.0"
},
"@react-spring/web": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"react-reconciler": {
"react": "^19.0.0"
}
}
}