-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.77 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
{
"name": "hello-nextjs-sample",
"version": "1.2.0",
"private": true,
"author": {
"name": "Hello Identity Co-op",
"email": "contact@hello.coop",
"url": "https://hello.coop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hellocoop/hello-nextjs-sample.git"
},
"bugs": {
"url": "https://github.com/hellocoop/hello-nextjs-sample/issues"
},
"homepage": "https://github.com/hellocoop/hello-nextjs-sample#readme",
"license": "MIT",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"quickstart": "npx @hellocoop/quickstart@latest --nextjs_app_router -x \"Next.js Sample\" -i \"hello-nextjs-sample\"",
"https": "next dev --experimental-https",
"config:vercel": "npm run config:vercel:secret-development && npm run config:vercel:secret-preview && npm run config:vercel:secret-production",
"config:vercel:secret-development": "node -e \"process.stdout.write(crypto.randomBytes(32).toString('hex'))\" | vercel env add HELLO_COOKIE_SECRET development",
"config:vercel:secret-preview": "node -e \"process.stdout.write(crypto.randomBytes(32).toString('hex'))\" | vercel env add HELLO_COOKIE_SECRET preview",
"config:vercel:secret-production": "node -e \"process.stdout.write(crypto.randomBytes(32).toString('hex'))\" | vercel env add HELLO_COOKIE_SECRET production"
},
"dependencies": {
"@hellocoop/nextjs": "^3.4.0",
"cobe": "^2.0.1",
"next": "16.3.4",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@hellocoop/quickstart": "~2.10.0",
"@tailwindcss/postcss": "^4",
"eslint": "^9",
"eslint-config-next": "16.3.4",
"open-cli": "^9.0.0",
"tailwindcss": "^4"
}
}