-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathpackage.json
116 lines (116 loc) · 3.74 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@netlify/plugin-nextjs",
"version": "3.4.2",
"description": "Run Next.js seamlessly on Netlify",
"main": "index.js",
"bin": {
"netlify-plugin-nextjs": "src/next-on-netlify.js"
},
"files": [
"helpers/**/*.js",
"src",
"manifest.yml",
"!src/cypress",
"!src/tests"
],
"scripts": {
"build": "next build test/sample",
"cypress:local": "env CYPRESS_DEPLOY=local cypress run --project ./src --config-file false --config video=false",
"cypress:netlify": "env CYPRESS_DEPLOY=netlify cypress run --project ./src --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",
"format": "run-s format:check-fix:*",
"format:ci": "run-s format:check:*",
"format:check-fix:lint": "run-e format:check:lint format:fix:lint",
"format:check:lint": "cross-env-shell eslint $npm_package_config_eslint",
"format:fix:lint": "cross-env-shell eslint --fix $npm_package_config_eslint",
"format:check-fix:prettier": "run-e format:check:prettier format:fix:prettier",
"format:check:prettier": "cross-env-shell prettier --check $npm_package_config_prettier",
"format:fix:prettier": "cross-env-shell prettier --write $npm_package_config_prettier",
"prepublishOnly": "run-s prepublishOnly:*",
"prepublishOnly:checkout": "git checkout main",
"prepublishOnly:pull": "git pull",
"prepublishOnly:install": "npm ci",
"prepublishOnly:test": "npm test",
"test:plugin": "npm run build && jest",
"test:src": "jest --config src/tests/jest.config.js",
"test": "npm run test:plugin && npm run test:src"
},
"config": {
"eslint": "--cache --format=codeframe --max-warnings=0 \"{src,scripts,tests,.github}/**/*.{js,md,html}\" \"*.{js,md,html}\" \".*.{js,md,html}\"",
"prettier": "--loglevel=warn \"{src,scripts,tests,.github}/**/*.{js,md,yml,json,html}\" \"*.{js,yml,json,html}\" \".*.{js,yml,json,html}\" \"!package-lock.json\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/netlify/netlify-plugin-nextjs.git"
},
"keywords": [
"nextjs",
"netlify",
"next",
"netlify-plugin"
],
"author": "lindsaylevine",
"license": "MIT",
"bugs": {
"url": "https://github.com/netlify/netlify-plugin-nextjs/issues"
},
"homepage": "https://github.com/netlify/netlify-plugin-nextjs#readme",
"dependencies": {
"@netlify/functions": "^0.7.2",
"@sls-next/lambda-at-edge": "1.8.0",
"adm-zip": "^0.5.4",
"chalk": "^4.1.0",
"chokidar": "^3.5.1",
"commander": "^7.1.0",
"debounce-fn": "^4.0.0",
"etag": "^1.8.1",
"execa": "^5.0.0",
"fastq": "^1.11.0",
"find-cache-dir": "^3.3.1",
"find-up": "^5.0.0",
"fs-extra": "^9.1.0",
"image-type": "^4.1.0",
"is-svg": "^4.3.1",
"make-dir": "^3.1.0",
"mime-types": "^2.1.30",
"moize": "^6.0.0",
"node-fetch": "^2.6.1",
"semver": "^7.3.2",
"sharp": "^0.28.1"
},
"devDependencies": {
"@netlify/eslint-config-node": "^3.1.4",
"cpy": "^8.1.1",
"cypress": "^7.0.0",
"folder-hash": "^4.0.0",
"husky": "^4.3.0",
"jest": "^26.6.1",
"netlify-cli": "^3.37.32",
"next": "^10.2.0",
"path-exists": "^4.0.0",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"tmp-promise": "^3.0.2",
"wait-on": "^5.2.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run format"
}
},
"engines": {
"node": ">=10.13.0"
},
"jest": {
"testMatch": [
"**/test/**/*.js",
"!**/test/fixtures/**",
"!**/test/sample/**"
],
"verbose": true,
"testTimeout": 60000
}
}