-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
57 lines (57 loc) · 1.86 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
52
53
54
55
56
57
{
"name": "node-next-gae-demo",
"version": "v1.0.0",
"description": "A universal react next.js app designed to work for Google App Engine's Node.js Early Access Program",
"main": "index.js",
"scripts": {
"dev": "next dev -p ${PORT:-3000}",
"build": "next build",
"start": "next start -p ${PORT:-8080}",
"start-local": "NODE_ENV=production next start -p ${PORT:-8080}",
"lint": "next lint",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy:gae": "gcloud --project blaine-garrett app deploy app.yaml --version main --verbosity=debug",
"docker:build:dev": "docker build -t gae-node-next-demo:dev -f ./ci/build.dev.Dockerfile .",
"docker:run:dev": "docker run -p 3000:8000 gae-node-next:demo",
"docker:build:production": "docker build -t gae-node-next-demo:prod -f ./ci/build.production.Dockerfile .",
"docker:run:production": "docker run -p 8080:8000 gae-node-next-demo:prod",
"cloudbuild:production": "gcloud builds submit --verbosity=debug --ignore-file=./ci/build.gcloudignore --config=./ci/build.production.cloudbuild.yaml --project=blaine-garrett"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blainegarrett/node-next-gae-demo.git"
},
"keywords": [
"boilerplate",
"node",
"nodejs",
"next",
"nextjs",
"google",
"app",
"engine",
"gae",
"cloud",
"isomorphic",
"ssr",
"universal",
"app"
],
"author": "Blaine Garrett",
"license": "ISC",
"bugs": {
"url": "https://github.com/blainegarrett/node-next-gae-demo/issues"
},
"homepage": "https://github.com/blainegarrett/node-next-gae-demo#readme",
"dependencies": {
"axios": "^0.24.0",
"next": "^12.0.4",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-next": "12.0.4"
}
}