-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.99 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
{
"type": "module",
"name": "react-examples",
"version": "1.0.0",
"description": "Examples for [React](https://react.dev).",
"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",
"prepare": "husky",
"validate": "npm run eslint && npm run prettier"
},
"devDependencies": {
"@eslint/js": "^9",
"@react-router/dev": "^7",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5",
"eslint": "^9",
"eslint-plugin-jsx-a11y": "^6",
"eslint-plugin-react": "^7",
"eslint-plugin-react-compiler": "latest",
"eslint-plugin-react-hooks": "^7",
"eslint-plugin-react-refresh": "^0",
"eslint-plugin-storybook": "^10",
"globals": "^16",
"husky": "^9",
"mime-types": "^3",
"prettier": "^3",
"rimraf": "^6",
"vite": "^7",
"zod-validation-error": "^5"
},
"dependencies": {
"@babel/standalone": "^7",
"@react-router/node": "^7",
"@react-router/serve": "^7",
"formik": "^2",
"isbot": "^5",
"prop-types": "^15",
"react": "^19",
"react-dom": "^19",
"react-hook-form": "^7",
"react-router": "^7",
"react-router-dom": "^7",
"react-spring": "^10",
"react-transition-group": "^4"
},
"overrides": {
"@react-spring/zdog": {
"react": "$react",
"react-dom": "$react-dom"
}
}
}