-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.7 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.7 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
{
"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",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"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-all config:vercel:*",
"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.3.15",
"cobe": "^0.6.3",
"next": "15.5.7",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@hellocoop/quickstart": "~2.8.5",
"@tailwindcss/postcss": "^4",
"eslint": "^9",
"eslint-config-next": "15.5.7",
"npm-run-all": "^4.1.5",
"open-cli": "^7.2.0",
"tailwindcss": "^4"
}
}