forked from netlify/next-on-netlify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.7 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
58
59
60
61
62
63
64
65
66
{
"name": "next-on-netlify",
"version": "2.6.3",
"description": "Wrapper for hosting NextJS applications with Server-Side Rendering on Netlify",
"bin": "./next-on-netlify.js",
"keywords": [
"next",
"nextjs",
"netlify",
"server-side rendering",
"ssr",
"serverless",
"netlify functions",
"wrapper",
"bridge"
],
"repository": {
"type": "git",
"url": "https://github.com/netlify/next-on-netlify"
},
"homepage": "https://github.com/netlify/next-on-netlify",
"author": "Finn Woelm",
"license": "MIT",
"files": [
"/lib",
"index.js"
],
"scripts": {
"format": "prettier --write .",
"cleanup": "node ./tests/helpers/clearCache.js",
"test": "jest --config tests/jest.config.js",
"cypress:local": "env CYPRESS_DEPLOY=local cypress run --config-file false --config video=false",
"cypress:netlify": "env CYPRESS_DEPLOY=netlify cypress run --config-file false --config video=false",
"cypress:local:testonly": "env CYPRESS_SKIP_DEPLOY=true npm run cypress:local",
"cypress:netlify:testonly": "env CYPRESS_SKIP_DEPLOY=true npm run cypress:netlify"
},
"peerDependencies": {
"next": ">=9.5.3"
},
"devDependencies": {
"cypress": "^5.1.0",
"execa": "^4.1.0",
"folder-hash": "^3.3.3",
"husky": "^4.3.0",
"jest": "^26.4.2",
"netlify-cli": "^2.61.0",
"next": "^9.5.3",
"prettier": "2.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"wait-on": "^5.2.0"
},
"dependencies": {
"@sls-next/lambda-at-edge": "^1.5.2",
"commander": "^6.0.0",
"fs-extra": "^9.0.1"
},
"husky": {
"hooks": {
"pre-commit": "prettier --check ."
}
},
"engines": {
"node": ">=10.17.0"
}
}