-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 906 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 906 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": "next-authkit-example",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"reset": "rm -rf node_modules && rm -rf .next && npm i",
"start-local-dev": "rm -rf .next && npm run prepare && npm run dev",
"format": "prettier --write .",
"lint": "next lint",
"prepare": "relative-deps"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/themes": "^3.2.1",
"@workos-inc/authkit-nextjs": "^2.12.0",
"next": "^16.0.9",
"react": "^19.2.2",
"react-dom": "^19.2.2"
},
"devDependencies": {
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"prettier": "^3.7.4",
"relative-deps": "^1.0.7",
"typescript": "^5.9.3"
},
"relativeDependencies": {}
}