forked from clerk/javascript
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"dev:remix": "remix watch",
"dev:wrangler": "cross-env NODE_ENV=development wrangler pages dev ./public",
"dev": "remix build && run-p \"dev:*\"",
"start": "cross-env NODE_ENV=production pnpm dev:wrangler",
"typecheck": "tsc -b",
"yalc:add": "pnpm yalc add @clerk/types && yalc add @clerk/remix && yalc add @clerk/backend"
},
"dependencies": {
"@clerk/backend": "file:.yalc/@clerk/backend",
"@clerk/remix": "file:.yalc/@clerk/remix",
"@clerk/types": "file:.yalc/@clerk/types",
"@remix-run/cloudflare": "^2.0.0",
"@remix-run/cloudflare-pages": "^2.0.0",
"@remix-run/react": "^2.0.0",
"cross-env": "^7.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.18.0",
"@remix-run/dev": "^2.0.0",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"eslint": "^8.27.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.8.4",
"wrangler": "^2.2.1"
},
"engines": {
"node": ">=18"
}
}