-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 4.1 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "app",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build-env-check": "node ./react-build-env-checker.js && react-scripts build",
"test": "./node_modules/.bin/react-scripts test --watchAll=true",
"test-all": "./node_modules/.bin/react-scripts test --watchAll=false",
"test-all:coverage": "./node_modules/.bin/react-scripts test --watchAll=false --coverage src",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "prettier --write \"**/*.+(ts|tsx|js|scss|json|css|md)\"",
"prepare": "cd ../ && husky install ./app/.husky",
"cypress": "cypress open",
"cypress-run": "cypress run --env grepTags=regression --browser chrome",
"cypress-report-run": "cypress run --reporter mochawesome --env grepTags=regression",
"cypress-report-merge": "npx mochawesome-merge \"cypress/results/*.json\" > mochawesomemerged.json",
"cypress-report-generate": "npx marge mochawesomemerged.json",
"cypress-report": "rm -rf cypress/results/* && npm run cypress-report-run && npm run cypress-report-merge && npm run cypress-report-generate"
},
"dependencies": {
"@cypress/grep": "^4.0.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"aws-sdk": "^2.1510.0",
"axios": "^1.7.4",
"dotenv": "^16.3.1",
"eslint-plugin-legacy-decorators": "^1.0.0",
"fake-progress": "^1.0.4",
"history": "^5.3.0",
"moment": "^2.30.1",
"nhsuk-frontend": "^9.3.0",
"nhsuk-react-components": "^5.0.0",
"pdfobject": "^2.2.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"react-router": "^6.14.2",
"react-router-dom": "^6.14.2",
"react-scripts": "^5.0.1",
"react-toggle": "^4.1.3",
"sass": "^1.66.1",
"serve": "^14.2.1",
"typescript": "^4.9.5",
"usehooks-ts": "^2.9.1",
"util": "^0.12.5",
"uuid": "^9.0.1",
"validator": "^13.11.0",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@storybook/addon-essentials": "^7.4.0",
"@storybook/addon-interactions": "^7.4.0",
"@storybook/addon-links": "^7.4.0",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.4.0",
"@storybook/preset-create-react-app": "^4.1.0",
"@storybook/react": "^7.4.0",
"@storybook/react-webpack5": "^7.4.0",
"@storybook/testing-library": "^0.2.0",
"@types/jest": "^27.5.2",
"@types/jest-axe": "^3.5.9",
"@types/node": "^16.18.40",
"@types/react": "^18.2.19",
"@types/react-dom": "^18.2.7",
"@types/react-toggle": "^4.0.5",
"@types/uuid": "^9.0.8",
"@types/validator": "^13.11.8",
"babel-plugin-named-exports-order": "^0.0.2",
"cypress": "^13.13.2",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.14.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-storybook": "^0.6.13",
"eslint-plugin-unused-imports": "^3.0.0",
"govuk-frontend": "^4.7.0",
"husky": "^8.0.3",
"jest-axe": "^8.0.0",
"lint-staged": "^15.3.0",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.3.0",
"prettier": "^3.0.3",
"prop-types": "^15.8.1",
"storybook": "^7.6.20",
"webpack": "^5.97.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"moduleNameMapper": {
"axios": "axios/dist/node/axios.cjs"
}
}
}