forked from opennextjs/opennextjs-netlify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.81 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
117
118
119
{
"name": "@netlify/plugin-nextjs",
"version": "4.2.5",
"description": "Run Next.js seamlessly on Netlify",
"main": "lib/index.js",
"files": [
"lib/**/*",
"manifest.yml"
],
"scripts": {
"build:demo": "next build demos/default",
"cy:open": "cypress open --config-file cypress/config/all.json",
"dev:demo": "next dev demos/default",
"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 publish:pull publish:install clean build test",
"publish:pull": "git pull",
"publish:install": "npm ci",
"publish:test": "npm test",
"test": "run-s build build:demo test:jest",
"test:jest": "jest",
"test:jest:update": "jest --updateSnapshot",
"test:update": "run-s build build:demo test:jest:update",
"prepare": "husky install node_modules/@netlify/eslint-config-node/.husky/ && npm run build",
"clean": "rimraf lib",
"build": "tsc",
"watch": "tsc --watch"
},
"config": {
"eslint": "--cache --format=codeframe --max-warnings=0 \"{src,scripts,tests,.github}/**/*.{ts,js,md,html}\" \"*.{ts,js,md,html}\" \".*.{ts,js,md,html}\"",
"prettier": "--loglevel=warn \"{src,scripts,tests,.github}/**/*.{ts,js,md,yml,json,html}\" \"*.{ts,js,yml,json,html}\" \".*.{ts,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.11.0",
"@netlify/ipx": "^0.0.9",
"@vercel/node-bridge": "^2.1.0",
"chalk": "^4.1.2",
"fs-extra": "^10.0.0",
"globby": "^11.0.4",
"moize": "^6.1.0",
"next": "^12.0.10",
"node-fetch": "^2.6.6",
"node-stream-zip": "^1.15.0",
"outdent": "^0.8.0",
"p-limit": "^3.1.0",
"pathe": "^0.2.0",
"pretty-bytes": "^5.6.0",
"semver": "^7.3.5",
"slash": "^3.0.0",
"tiny-glob": "^0.2.9"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.16.0",
"@netlify/build": "^26.2.6",
"@netlify/eslint-config-node": "^5.1.4",
"@reach/dialog": "^0.16.2",
"@reach/visually-hidden": "^0.16.0",
"@testing-library/cypress": "^8.0.1",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.2",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.10",
"@types/react": "^17.0.38",
"babel-jest": "^27.2.5",
"cpy": "^8.1.2",
"cypress": "^9.0.0",
"eslint-config-next": "^12.0.0",
"husky": "^7.0.4",
"jest": "^27.0.0",
"netlify-plugin-cypress": "^2.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"sass": "^1.49.0",
"tmp-promise": "^3.0.2",
"typescript": "^4.3.4"
},
"engines": {
"node": ">=12.0.0"
},
"jest": {
"testMatch": [
"**/test/**/*.js",
"!**/test/fixtures/**",
"!**/test/sample/**"
],
"transform": {
"\\.[jt]sx?$": "babel-jest"
},
"verbose": true,
"testTimeout": 60000
}
}