-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·39 lines (39 loc) · 1.01 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
{
"name": "nextjs-9-gae-demo",
"version": "1.0.0",
"description": "Sample Next.js v9 application running on Google App Engine's Standard Environment.",
"author": {
"name": "Brad Risse",
"email": "[email protected]"
},
"license": "ISC",
"keywords": [
"node",
"nodejs",
"next",
"nextjs",
"google",
"app",
"engine",
"gae",
"cloud",
"isomorphic",
"ssr",
"universal",
"app"
],
"scripts": {
"dev": "next dev",
"gcp-predeploy": "find ./build -name '\\[...*' -exec bash -c 'mv \"$1\" \"${1/.../@@@}\"' -- {} \\;",
"gcp-build": "find ./build -name '\\[@@@*' -exec bash -c 'mv \"$1\" \"${1/@@@/...}\"' -- {} \\;",
"build": "rm -rf ./build && NODE_ENV=production next build",
"start": "next start -p 8080",
"deploy": "npm run build && npm run gcp-predeploy && gcloud app deploy",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"next": "9.5.5",
"react": "16.13.1",
"react-dom": "16.13.1"
}
}