-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.72 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": "repairs-hub-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "yarn next dev -p 5001",
"debug": "NODE_OPTIONS='--inspect' yarn next dev -p 5000",
"build": "yarn next build",
"deploy": "sls deploy",
"prestart": "yarn next build",
"start": "yarn next start -p 5001",
"start-server": "yarn next start -p 5001",
"tests": "yarn test:unit && yarn test:e2e",
"test:unit": "NODE_ENV=test node --expose-gc ./node_modules/.bin/jest --runInBand --logHeapUsage",
"test:unit-windows": "node ./node_modules/jest/bin/jest.js",
"test:unit-win-upd": "node ./node_modules/jest/bin/jest.js --updateSnapshot",
"lint": "yarn eslint . && echo 'Lint complete.'",
"lintfix": "yarn eslint . --max-warnings 0 --fix",
"test:e2e": "NODE_ENV=test yarn start-test http://localhost:5001 cy:run",
"e2e:audit": "NODE_ENV=test yarn start-test http://localhost:5001 cy:run:audit",
"cy:run": "yarn cypress run --browser chrome --headless",
"cy:run:audit": "yarn cypress run --browser chrome --headless --env runAudit=true",
"cy:open": "yarn cypress open --browser chrome",
"clear-eslint-cache": "yarn eslint --cache --cache-location node_modules/.cache/.eslintcache --fix"
},
"dependencies": {
"@reach/dialog": "^0.18.0",
"@sentry/nextjs": "^6.17.9",
"aws-xray-sdk": "^3.10.1",
"axios": "^0.21.1",
"browser-image-compression": "^2.0.2",
"classnames": "^2.3.2",
"cookie": "^0.4.1",
"date-fns": "^2.16.1",
"dayjs": "^1.11.7",
"dotenv": "^8.2.0",
"easy-soap-request": "^4.1.3",
"filesize": "^10.1.4",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"lbh-frontend": "^3.5.3",
"loglevel": "^1.8.0",
"mockdate": "^3.0.2",
"next": "^12",
"path": "^0.12.7",
"qs": "^6.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^6.14.0",
"react-hotjar": "^5.0.0",
"react-photo-view": "^1.2.6",
"restana": "^4.8.0",
"retry": "^0.13.1",
"sass": "^1.29.0",
"serve-static": "^1.14.1",
"serverless-http": "^2.6.0",
"universal-cookie": "^4.0.4",
"uuid": "^8.3.2",
"xmldom": "^0.6.0",
"xpath": "^0.0.32"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-private-methods": "^7.22.5",
"@testing-library/dom": "^7.31.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^13.1.9",
"@types/node": "^22.1.0",
"@types/qs": "^6.9.15",
"@types/react": "^18.3.3",
"@types/retry": "^0.12.5",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"babel-jest": "^26.6.3",
"cypress": "13",
"cypress-audit": "1.1.0",
"cypress-dotenv": "^1.2.2",
"cypress-dotenv-flow": "^1.2.2",
"cypress-multi-reporters": "^2.0.4",
"dotenv-flow": "^3.2.0",
"eslint": "8",
"eslint-config-prettier": "^7.0.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-cypress": "^3.4.0",
"eslint-plugin-jest": "^28.7.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"fishery": "^1.3.1",
"husky": "^4.3.5",
"jest": "^26.6.3",
"jest-clean-console-reporter": "^0.3.0",
"lint-staged": "^10.5.3",
"mocha-junit-reporter": "^2.2.1",
"node-mocks-http": "^1.10.0",
"prettier": "^2.2.1",
"sass": "^1.29.0",
"start-server-and-test": "2",
"timezone-mock": "^1.3.6",
"typescript": "^5.5.4",
"xml2js": "^0.6.2"
},
"lint-staged": {
"**/*.{js,jsx}": "eslint --fix",
"**/*.{js,jsx,css,scss,md}": "prettier --write --list-different"
}
}