-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "next-better-api",
"version": "0.1.5",
"description": "Utilities for safer, easier APIs with NextJS",
"keywords": [
"next",
"nextjs",
"next.js",
"api",
"zod",
"schema",
"helper"
],
"main": "build/src/index.js",
"homepage": "https://github.com/filp/next-better-api",
"repository": {
"type": "git",
"url": "git+https://github.com/filp/next-better-api.git"
},
"bugs": {
"url": "https://github.com/filp/next-better-api/issues"
},
"author": "Filipe Dobreira",
"license": "MIT",
"types": "build/src/index.d.ts",
"scripts": {
"lint": "eslint .",
"test": "jest .",
"build": "rm -rf ./build/ && tsc -b .",
"dev": "ts-node src/index.ts",
"prepack": "prettier -c . && yarn lint && yarn test && yarn build"
},
"peerDependencies": {
"next": "^12.*",
"zod": "^3.*"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"next": "^12.2.5",
"node-mocks-http": "^1.11.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"zod": "^3.18.0"
}
}