-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "next-nginx-routes",
"description": "Generate Nginx routing configuration for static Next.js projects.",
"version": "1.3.0",
"keywords": [
"export",
"Next.js",
"Nginx",
"configuration",
"routing",
"static"
],
"license": "BSD-2-Clause",
"bin": "./generate.js",
"devDependencies": {
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"standard-version": "^9.5.0"
},
"peerDependencies": {
"next": "^12.x || ^13.x || ^14.x || ^15.x"
},
"bugs": {
"url": "https://github.com/geops/next-nginx-routes/issues"
},
"homepage": "https://geops.com/en/blog/next-nginx-routes",
"repository": {
"type": "git",
"url": "https://github.com/geops/next-nginx-routes.git"
},
"scripts": {
"format": "prettier --write *.js",
"lint": "eslint *.js",
"test": "jest",
"release": "standard-version"
}
}