-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 939 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 939 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
35
36
37
{
"name": "template-remix",
"version": "0.0.40",
"private": true,
"type": "module",
"engines": {
"node": ">=18.17.0 <=22"
},
"dependencies": {
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@remix-run/serve": "^2.8.1",
"frames.js": "^0.22.0",
"isbot": "^4.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@frames.js/debugger": "^0.5.0",
"@remix-run/dev": "^2.8.1",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"typescript": "^5.4.5",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.2.1"
},
"scripts": {
"build": "remix vite:build",
"dev": "node ./scripts/dev-script.js",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc"
}
}