forked from sainsburys-tech/next-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
49
50
51
52
{
"name": "next-logger",
"version": "4.0.0",
"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"
},
"devDependencies": {
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"next": "^14.1.0",
"prettier": "^2.8.8",
"testcontainers": "^9.5.0"
},
"dependencies": {
"cosmiconfig": "^8.1.3",
"pino": "^8.11.0"
},
"jest": {
"resetMocks": true,
"resetModules": true,
"errorOnDeprecated": true
}
}