-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
63 lines (63 loc) · 1.4 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
{
"name": "next-logger",
"version": "5.0.1",
"description": "JSON logging patcher for Next.js",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sainsburys-tech/next-logger.git"
},
"keywords": [
"next.js",
"next",
"logging",
"logger",
"log",
"json"
],
"author": "Chris Atkin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sainsburys-tech/next-logger/issues"
},
"homepage": "https://github.com/sainsburys-tech/next-logger#readme",
"peerDependencies": {
"next": ">=9.0.0",
"pino": "^8.0.0 || ^9.0.0",
"winston": "^3.0.0"
},
"peerDependenciesMeta": {
"pino": {
"optional": true
},
"winston": {
"optional": true
}
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"next": "^14.2.9",
"pino": "^9.4.0",
"prettier": "^3.3.3",
"testcontainers": "^10.13.0",
"winston": "^3.14.2"
},
"dependencies": {
"lilconfig": "^3.1.2"
},
"jest": {
"resetMocks": true,
"resetModules": true,
"errorOnDeprecated": true
}
}