-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.32 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
{
"name": "netlify-nextjs",
"version": "0.0.6",
"main": "bin/cmd.js",
"bin": {
"netlify-nextjs": "bin/cmd.js",
"netlify-next": "bin/cmd.js"
},
"homepage": "https://github.com/netlify-labs/netlify-nextjs#readme",
"repository": "https://github.com/netlify-labs/netlify-nextjs.git",
"description": "Build serverless nextjs for netlify deploy",
"author": "sw-yx <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"version": "auto-changelog -p --template keepachangelog && git add .",
"prepublishOnly": "git push && git push --tags && gh-release",
"build": "tsc",
"watch": "tsc -w"
},
"files": [
"lib/*.js",
"cache/*.js",
"!lib/*.spec.js",
"bin/*.js"
],
"bugs": {
"url": "https://github.com/netlify-labs/netlify-nextjs/issues"
},
"dependencies": {
"amp-toolbox-optimizer": "^1.2.0-alpha.2",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"cpy": "^7.3.0",
"encoding": "^0.1.12",
"execa": "^2.0.3",
"has-yarn": "^2.1.0",
"netlify-lambda": "^1.5.0",
"next-aws-lambda": "^2.0.5-alpha.0",
"toml": "^3.0.0"
},
"devDependencies": {
"@types/node": "^12.6.1",
"auto-changelog": "^1.14.1",
"gh-release": "^3.5.0",
"next": "^9.0.0",
"typescript": "^3.5.3"
},
"peerDependencies": {
"next": "^9.0.0"
}
}