-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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
{
"name": "remix-auth-starter",
"private": true,
"description": "Add sign up, sign in, profile management, and authenticated API routes to your Remix application with the Remix Auth Starter by Clerk.",
"keywords": [
"remix",
"auth",
"starter",
"clerk",
"react"
],
"author": "Clerk, Inc.",
"license": "MIT",
"homepage": "https://github.com/clerkinc/remix-auth-starter",
"repository": {
"type": "git",
"url": "https://github.com/clerkinc/remix-auth-starter"
},
"scripts": {
"build": "cross-env NODE_ENV=production remix build",
"dev": "cross-env NODE_ENV=development remix dev"
},
"dependencies": {
"@clerk/remix": "2.10.0-snapshot.0b0cc93",
"@remix-run/node": "^1.3.5",
"@remix-run/react": "^1.3.5",
"@remix-run/vercel": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@remix-run/dev": "^1.3.5",
"@remix-run/eslint-config": "^1.3.5",
"@remix-run/serve": "^1.3.5",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"cross-env": "^7.0.3",
"eslint": "^8.9.0",
"prettier": "^2.5.1",
"typescript": "^4.6.2"
},
"engines": {
"node": ">=14"
}
}