-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.63 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
{
"name": "next-joi",
"version": "2.2.1",
"description": "Validate NEXT.js API Routes with joi",
"keywords": [
"nextjs",
"joi",
"middleware",
"typescript"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/index.js",
"dist/src/index.d.ts"
],
"author": {
"email": "[email protected]",
"name": "Codecoolture",
"url": "https://codecoolture.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/codecoolture/next-joi"
},
"homepage": "https://github.com/codecoolture/next-joi#readme",
"repository": "https://github.com/codecoolture/next-joi",
"peerDependencies": {
"joi": ">=17.1.1",
"next": ">=9.5.1"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/joi": "^17.2.3",
"@types/test-listen": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"husky": "^6.0.0",
"isomorphic-unfetch": "^3.1.0",
"jest": "^26.6.3",
"joi": "^17.4.0",
"next": "^10.1.3",
"next-connect": "^0.10.1",
"prettier": "^2.2.1",
"test-listen": "^1.1.0",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"scripts": {
"lint": "eslint . --ext .ts",
"prepublish": "yarn test && tsc",
"preversion": "yarn test && tsc",
"postversion": "git push --tags && yarn publish . --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"",
"test": "jest",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
}
}