-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 2.86 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "my-time-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@rjsf/core": "^5.4.0",
"@rjsf/utils": "^5.4.0",
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.31",
"@types/react-dom": "^18.0.11",
"core-js": "^3.29.1",
"final-form": "^4.20.9",
"formik": "^2.2.9",
"govuk-colours": "^1.1.0",
"govuk-react": "^0.10.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-final-form": "^6.5.9",
"react-hook-form": "^7.43.8",
"react-router-dom": "^6.9.0",
"react-scripts": "^5.0.1",
"styled-components": "^5.3.9",
"typescript": "^5.0.2",
"web-vitals": "^3.3.0"
},
"engines": {
"node": ">=12"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"react-is": ">=16.8.0"
},
"scripts": {
"start": "echo 'this is running bukd prod' && react-scripts start",
"build": "echo 'this is running build'",
"test": "react-scripts test --testPathPattern 'src/unit_tests'",
"eject": "react-scripts eject",
"test:cypress": "cypress run-ct",
"cypress": "cypress open-ct",
"version": "yarn version",
"lint": "echo AdamAndKian",
"lint:fix": "prettier --write . && eslint --fix .",
"build:prod": "echo 'this is running bukd prod'",
"test:functional": "cypress run-ct",
"cichecks": "yarn build && yarn rebuild puppeteer && yarn lint",
"test:coverage": "echo 'add test converage later on'",
"test:a11y": "echo 'add accessibility tests in later on'"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@cypress/react": "^7.0.3",
"@cypress/webpack-dev-server": "^3.4.0",
"@types/jest": "^29.5.0",
"@types/react-router-dom": "^5.3.3",
"cypress": "^12.5.1",
"cypress-file-upload": "^5.0.8",
"react-is": "^17.0.2",
"workspace-alias": "^0.1.0"
},
"nyc": {
"report-dir": "coverage/unit",
"reporter": [
"text",
"json",
"lcov"
],
"all": true,
"branches": 90,
"functions": 90,
"lines": 95,
"statements": 95,
"watermarks": {
"branches": [
90,
95
],
"functions": [
90,
90
],
"lines": [
90,
95
],
"statements": [
85,
95
]
}
},
"workspaces": [
"src/*"
],
"preconstruct": {
"packages": [
"src/*"
]
},
"packageManager": "yarn@3.4.1"
}