This repository has been archived by the owner on Apr 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.68 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
{
"name": "coronavirus-here-to-help-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:api": "node tools/mockApi.js",
"build": "next build",
"start": "next start",
"test": "jest",
"test:e2e:ci": "cypress run --browser firefox",
"cypress:local": "npx cypress open",
"lint": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"classnames": "^2.2.6",
"cypress": "^6.2.1",
"cypress-dotenv": "^1.2.2",
"eslint-react": "^0.0.4",
"govuk-frontend": "^3.10.2",
"jsonwebtoken": "^8.5.1",
"next": "^12.3.1",
"node-fetch": "^3.2.10",
"notifications-node-client": "^5.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"restana": "^4.8.1",
"sass": "^1.32.4",
"serve-static": "^1.14.1",
"serverless-http": "^2.6.0",
"universal-cookie": "^4.0.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@testing-library/dom": "^7.29.2",
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/react": "^11.2.2",
"babel-jest": "^26.6.3",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"faker": "^5.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-dom": "^4.0.0",
"json-server": "^0.16.3",
"moxios": "^0.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"randexp": "^0.5.3"
}
}