-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 889 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 889 Bytes
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
{
"name": "react-router-cjs",
"private": true,
"sideEffects": false,
"type": "commonjs",
"scripts": {
"build": "react-router build",
"dev": "react-router dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "react-router-serve ./build/server/index.js",
"typecheck": "tsc"
},
"dependencies": {
"@react-router/node": "^7.1.5",
"react-router": "^7.1.5",
"@react-router/serve": "^7.1.5",
"isbot": "^4.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"open-source-stack": "*"
},
"devDependencies": {
"@react-router/dev": "^7.1.5",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/node": "22.13.1",
"typescript": "^5.1.6",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.2.1"
},
"engines": {
"node": ">=22.0.0"
}
}