This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@next-testing/api",
"version": "2.0.0",
"repository": "https://github.com/marpme/next-testing/api",
"homepage": "https://github.com/marpme/next-testing/api",
"bugs": {
"url": "https://github.com/marpme/next-testing/api/issues"
},
"files": [
"package.json",
"package-lock.json",
"tsconfig.json",
"dist/**"
],
"description": "Next API Test Suite - Simplifying the mocking and asserting of Next API Request & Responses",
"keywords": [
"nodejs",
"http",
"typescript",
"nextjs",
"next",
"nextapiresponse",
"nextapirequest",
"nextapi",
"testing",
"mock",
"mocking"
],
"author": "marpme<7430964+marpme@users.noreply.github.com>",
"license": "MIT",
"main": "dist/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"prepublish": "npm run build",
"build": "tsc --project tsconfig.build.json",
"test": "vitest",
"coverage": "vitest run --coverage",
"format:check": "prettier --check src tests/ package.json tsconfig.json tsconfig.build.json vitest.config.ts",
"format:write": "prettier --write src tests/ package.json tsconfig.json tsconfig.build.json vitest.config.ts",
"lint": "eslint src/ tests/"
},
"dependencies": {
"@next/env": "^14.0.0"
},
"peerDependencies": {
"next": "^14.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^0.34.1",
"eslint": "^8.29.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.2",
"lerna": "^7.1.3",
"next": "^14.0.0",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.2",
"vitest": "^0.34.1"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true
}
}