This repository has been archived by the owner on Nov 29, 2024. It is now read-only.
forked from remix-run/react-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.63 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
{
"private": true,
"workspaces": {
"packages": [
"packages/router",
"packages/react-router",
"packages/react-router-dom"
]
},
"scripts": {
"build": "cd ./packages/react-router && npm run build && cd ../react-router-dom && npm run build",
"clean": "git clean -fdX .",
"format": "prettier --ignore-path .eslintignore --write .",
"format:check": "prettier --ignore-path .eslintignore --check .",
"lint": "eslint --cache .",
"prerelease": "yarn build",
"test": "jest",
"test:inspect": "node --inspect-brk ./node_modules/.bin/jest"
},
"jest": {
"projects": [
"<rootDir>/packages/*"
],
"reporters": [
"default"
]
},
"resolutions": {
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"jsdom": "25.0.1"
},
"dependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.22.9",
"@babel/preset-modules": "^0.1.6",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@octokit/core": "^6.0.0",
"@octokit/graphql": "^8.0.0",
"@octokit/plugin-paginate-rest": "^11.0.0",
"@octokit/rest": "^21.0.0",
"@remix-run/web-fetch": "4.4.2",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "^16.0.0",
"@types/jest": "29.5.14",
"@types/jsdom": "^21.1.1",
"@types/jsonfile": "^6.1.1",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/react-native": "^0.73.0",
"@types/react-test-renderer": "^18.0.0",
"@types/semver": "^7.5.6",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@typescript-eslint/typescript-estree": "^8.0.0",
"abort-controller": "^3.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.6.2",
"babel-plugin-dev-expression": "^0.2.3",
"chalk": "^5.3.0",
"cheerio": "^1.0.0-rc.12",
"eslint": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^28.0.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "next",
"fs-extra": "^11.2.0",
"history": "^5.3.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"jsonfile": "^6.1.0",
"prettier": "^3.1.1",
"prompt-confirm": "^2.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"semver": "^7.5.4",
"type-fest": "^4.8.3",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=14.0.0"
}
}