-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.77 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "gap",
"private": true,
"scripts": {
"clean": "rm -rf node_modules yarn.lock",
"clean:install": "yarn run clean && yarn install",
"dev": "next dev",
"build": "next build",
"build:image": "npm run build && docker build -t gap-web-docker .",
"test": "jest --watch",
"format": "prettier --write .",
"coverage": "jest --coverage",
"start": "NODE_OPTIONS='-r next-logger/presets/next-only' next start",
"lint": "next lint",
"postinstall": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
"contentful-typescript-codegen": "contentful-typescript-codegen --output @types/generated/contentful.d.ts"
},
"dependencies": {
"@aws-crypto/client-node": "^3.2.2",
"@contentful/rich-text-react-renderer": "^15.19.6",
"@elastic/elasticsearch": "7.10",
"axios": "1.6.8",
"body-parser": "^1.20.2",
"contentful": "^9.3.6",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"govuk-frontend": "^3.15",
"imap-simple": "^5.1.0",
"jose": "^5.2.4",
"jsonwebtoken": "^9.0.2",
"lint-staged": "^12.5.0",
"mailparser": "^3.7.0",
"moment": "^2.30.1",
"moment-timezone": "^0.5.35",
"next": "13.5.6",
"next-logger": "4.0.0",
"nodemailer": "^6.9.13",
"nookies": "^2.5.2",
"notifications-node-client": "^8.0.0",
"pg": "^8.11.5",
"pino": "8.20.0",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-gtm-module": "^2.0.11",
"react-moment": "^1.1.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@elastic/elasticsearch-mock": "^1.0.0",
"@swc/core": "^1.4.16",
"@swc/jest": "^0.2.29",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.3.1",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"contentful-management": "^10.46.4",
"contentful-typescript-codegen": "^3.4.0",
"eslint": "^8.57.0",
"eslint-config-next": "12.3.4",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^7.0.4",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.2.5",
"sass": "^1.75.0",
"typescript": "^5.4.5",
"urlpattern-polyfill": "^9.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"http-cache-semantics": "^4.1.1",
"loader-utils": "^3.2.1",
"postcss": "^8.2.13",
"semver": "^7.5.2",
"ua-parser-js": "^1.0.33",
"xml2js": "^0.5.0"
}
}