-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathpackage.json
59 lines (59 loc) · 1.33 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
{
"name": "@remix-run/react",
"version": "2.11.1-pre.0",
"description": "React DOM bindings for Remix",
"bugs": {
"url": "https://github.com/remix-run/remix/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/remix-run/remix",
"directory": "packages/remix-react"
},
"license": "MIT",
"sideEffects": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/esm/index.js",
"scripts": {
"tsc": "tsc"
},
"dependencies": {
"@remix-run/router": "1.19.0",
"@remix-run/server-runtime": "workspace:*",
"react-router": "6.26.0",
"react-router-dom": "6.26.0",
"turbo-stream": "2.2.0"
},
"devDependencies": {
"@remix-run/node": "workspace:*",
"@remix-run/react": "workspace:*",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.3.0",
"@types/react": "^18.2.20",
"jest-environment-jsdom": "^29.6.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^5.1.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"future/",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
]
}