-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathpackage.json
68 lines (68 loc) · 1.46 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
{
"name": "@netlify/plugin-nextjs",
"version": "2.0.0",
"description": "run Nextj.s seamlessly on netlify",
"main": "index.js",
"files": [
"helpers/**/*.js",
"manifest.yml"
],
"scripts": {
"format": "prettier --write .",
"build": "next build test/sample",
"test": "npm run build && jest"
},
"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": {
"chalk": "^4.1.0",
"find-up": "^4.1.0",
"jimp": "^0.16.1",
"make-dir": "^3.1.0",
"next-on-netlify": "2.8.7",
"semver": "^7.3.2"
},
"devDependencies": {
"@netlify/eslint-config-node": "^0.3.0",
"cpy": "^8.1.1",
"husky": "^4.3.0",
"jest": "^26.6.1",
"next": "^9.5.3",
"path-exists": "^4.0.0",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"tmp-promise": "^3.0.2"
},
"husky": {
"hooks": {
"pre-commit": "prettier --check ."
}
},
"engines": {
"node": ">=10.13.0"
},
"jest": {
"testMatch": [
"**/test/**/*.js",
"!**/test/fixtures/**",
"!**/test/sample/**"
],
"verbose": true,
"testTimeout": 60000
}
}