-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
105 lines (105 loc) · 3.12 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
{
"name": "@netlify/plugin-nextjs",
"version": "5.8.1",
"description": "Run Next.js seamlessly on Netlify",
"main": "./dist/index.js",
"type": "module",
"files": [
"dist",
"edge-runtime",
"manifest.yml"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prepack": "clean-package",
"postpack": "clean-package restore",
"pretest": "npm run pretest:integration",
"pretest:integration": "npm run build && node tests/prepare.mjs",
"build": "node ./tools/build.js",
"build:watch": "node ./tools/build.js --watch",
"lint": "eslint --cache --format=codeframe --max-warnings=0 --ext .ts,.cts,.js src",
"format:fix": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"test:smoke": "vitest run --project smoke",
"test:e2e": "playwright test",
"test:ci:unit-and-integration": "vitest run --reporter=default --retry=3 --project=unit --project=integration",
"test:ci:smoke": "vitest run --reporter=default --retry=3 --project=smoke",
"test:ci:e2e": "playwright test",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opennextjs/opennextjs-netlify.git"
},
"keywords": [
"nextjs",
"netlify",
"next",
"netlify-runtime"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/opennextjs/opennextjs-netlify/issues"
},
"homepage": "https://opennext.js.org/netlify",
"devDependencies": {
"@fastly/http-compute-js": "1.1.4",
"@netlify/blobs": "^8.1.0",
"@netlify/build": "^29.55.4",
"@netlify/edge-bundler": "^12.2.3",
"@netlify/edge-functions": "^2.11.0",
"@netlify/eslint-config-node": "^7.0.1",
"@netlify/functions": "^2.8.2",
"@netlify/serverless-functions-api": "^1.30.1",
"@netlify/zip-it-and-ship-it": "^9.41.0",
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.51.0",
"@opentelemetry/resources": "^1.24.0",
"@opentelemetry/sdk-node": "^0.51.0",
"@opentelemetry/sdk-trace-node": "^1.24.0",
"@opentelemetry/semantic-conventions": "^1.24.0",
"@playwright/test": "^1.43.1",
"@types/node": "^20.12.7",
"@types/picomatch": "^3.0.0",
"@types/uuid": "^10.0.0",
"@vercel/nft": "^0.27.0",
"cheerio": "^1.0.0-rc.12",
"clean-package": "^2.2.0",
"esbuild": "^0.24.0",
"execa": "^8.0.1",
"fast-glob": "^3.3.2",
"fs-monkey": "^1.0.6",
"get-port": "^7.1.0",
"lambda-local": "^2.2.0",
"memfs": "^4.9.2",
"mock-require": "^3.0.3",
"msw": "^2.0.7",
"netlify-cli": "^17.37.1",
"next": "^15.0.0-canary.28",
"os": "^0.1.2",
"outdent": "^0.8.0",
"p-limit": "^5.0.0",
"path-to-regexp": "^6.2.1",
"picomatch": "^4.0.2",
"prettier": "^3.2.5",
"semver": "^7.6.0",
"typescript": "^5.4.5",
"unionfs": "^4.5.4",
"uuid": "^10.0.0",
"vitest": "^1.5.3"
},
"clean-package": {
"indent": 2,
"remove": [
"clean-package",
"dependencies",
"devDependencies",
"scripts"
]
}
}