-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.56 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
44
45
46
47
48
49
50
51
52
53
{
"name": "@arcjet-examples/nextjs",
"description": "Arcjet Next.js example app. Arcjet helps developers protect their apps in just a few lines of code. Bot detection. Rate limiting. Email validation. Attack protection. Data redaction. A developer-first approach to security.",
"license": "Apache-2.0",
"homepage": "https://arcjet.com",
"repository": "github:arcjet/example-nextjs",
"bugs": {
"url": "https://github.com/arcjet/examples/issues",
"email": "support@arcjet.com"
},
"author": {
"name": "Arcjet",
"email": "support@arcjet.com",
"url": "https://arcjet.com"
},
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test:open": "playwright test --ui-host=0.0.0.0",
"test:run": "playwright test"
},
"dependencies": {
"@arcjet/decorate": "1.3.0",
"@arcjet/env": "1.3.0",
"@arcjet/ip": "1.3.0",
"@arcjet/next": "1.3.0",
"@fontsource-variable/figtree": "5.2.10",
"@fontsource/ibm-plex-mono": "5.2.7",
"@hookform/resolvers": "5.2.2",
"@nosecone/next": "1.3.0",
"@oddbird/css-anchor-positioning": "0.8.0",
"next": "16.1.6",
"next-themes": "0.4.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "7.71.1",
"zod": "4.3.6"
},
"devDependencies": {
"@playwright/test": "1.58.2",
"@types/node": "22.19.11",
"@types/react": "19.2.13",
"@types/react-dom": "19.2.3",
"typescript": "5.9.3"
}
}