-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "edge-demo-site",
"version": "1.0.0",
"description": "Demo site to test the Netlify Remix edge adapter",
"main": "index.js",
"type": "module",
"private": true,
"scripts": {
"build": "remix build",
"dev": "remix dev --manual -c \"ntl dev --framework=#static\"",
"start": "netlify serve",
"typecheck": "tsc -b"
},
"repository": {
"type": "git",
"url": "https://github.com/netlify/remix-compute"
},
"keywords": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/netlify/remix-compute/issues"
},
"homepage": "https://github.com/netlify/remix-compute#readme",
"dependencies": {
"@netlify/edge-functions": "^3.0.3",
"@netlify/remix-edge-adapter": "workspace:*",
"@netlify/remix-runtime": "workspace:*",
"@remix-run/css-bundle": "^2.9.2",
"@remix-run/react": "^2.9.2",
"cross-env": "^10.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@remix-run/dev": "^2.9.2",
"@remix-run/eslint-config": "^2.9.2",
"@remix-run/serve": "^2.9.2",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"eslint": "^8.32.0",
"typescript": "^5.0.0"
}
}