-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 932 Bytes
/
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
{
"name": "nextjs-google-cloud-functions",
"version": "0.1.0",
"description": "Deploy NextJS to Google Cloud Functions and go FULL Serverless",
"main": "server.js",
"scripts": {
"dev": "node server.js",
"build": "next build",
"deploy": "gcloud functions deploy nextjs --entry-point=handler --allow-unauthenticated --trigger-http --runtime=nodejs10 --memory=128MB"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/daveteu/nextjs-google-cloud-functions.git"
},
"keywords": [
"nextjs",
"cloud-functions",
"serverless"
],
"author": "Dave T",
"license": "ISC",
"bugs": {
"url": "https://github.com/daveteu/nextjs-google-cloud-functions/issues"
},
"homepage": "https://github.com/daveteu/nextjs-google-cloud-functions#readme",
"dependencies": {
"express": "^4.17.1",
"next": "^9.4.4",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}