-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
51 lines (51 loc) · 1.94 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
46
47
48
49
50
51
{
"name": "hello-next-sample",
"version": "1.2.0",
"author": {
"name": "Hello Identity Co-op",
"email": "[email protected]",
"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 -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.0.3",
"cobe": "^0.6.3",
"next": "^13.5.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@hellocoop/quickstart": "~2.8.5",
"@types/node": "20.6.1",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"eslint": "8.49.0",
"eslint-config-next": "^13.5.1",
"npm-run-all": "^4.1.5",
"open-cli": "^7.2.0",
"postcss": "^8.4.31",
"tailwindcss": "3.3.3",
"typescript": "5.2.2"
}
}