-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
75 lines (75 loc) · 2.21 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
{
"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",
"eslint-plugin-jsx-a11y": "^6",
"eslint-plugin-react": "^7",
"eslint-plugin-react-compiler": "latest",
"eslint-plugin-react-hooks": "^5",
"husky": "9.1.7",
"prettier": "^3",
"rimraf": "^6"
},
"dependencies": {
"@babel/core": "^7",
"@babel/preset-env": "^7",
"@babel/preset-react": "^7",
"@babel/standalone": "^7",
"@react-spring/web": "^9",
"@stylexjs/stylex": "0.11.0",
"axios": "^1",
"core-js": "^3",
"esbuild": "0.25.0",
"formik": "^2",
"mime-types": "^2",
"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",
"react-redux": "^9",
"react-router": "^7",
"react-router-dom": "^7",
"react-transition-group": "^4",
"redux": "^5",
"scheduler": "0.25.0",
"scheduler-next": "npm:scheduler@next",
"styled-components": "^6",
"typescript": "^5"
},
"overrides": {
"react-dom-experimental": {
"react": "^19"
},
"@react-spring/web": {
"react": "^19",
"react-dom": "^19"
}
}
}