-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "@moxy/next-rest-api",
"version": "2.1.0",
"description": "Aims to ease the development of REST APIs in Next.js",
"main": "index.js",
"files": [],
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"test": "jest",
"prerelease": "npm t && npm run lint",
"release": "standard-version",
"postrelease": "git push --follow-tags origin HEAD && npm publish"
},
"keywords": [
"next",
"nextjs",
"api",
"rest",
"http"
],
"author": "André Cruz <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:moxystudio/next-rest-api.git"
},
"peerDependencies": {
"@hapi/boom": ">=9 <10",
"joi": ">= 17 <18",
"next": ">= 9 <=11"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@hapi/boom": "^9.0.0",
"@moxy/eslint-config-base": "^13.0.3",
"@moxy/eslint-config-jest": "^13.0.3",
"@moxy/jest-config-base": "^6.1.0",
"eslint": "^7.0.0",
"husky": "^4.0.10",
"jest": "^26.0.0",
"joi": "^17.3.0",
"lint-staged": "^11.0.0",
"next": "^11.0.0",
"standard-version": "^9.0.0",
"supertest": "^6.1.1"
}
}