This repository has been archived by the owner on Jul 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 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
{
"name": "aperture",
"private": true,
"homepage": ".",
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test-ci": "jest --ci",
"e2etest": "yarn playwright test",
"e2edebug": "yarn playwright test --debug",
"e2eui": "yarn playwright test --ui",
"e2ereport": "yarn playwright show-report",
"prepare": "husky install"
},
"dependencies": {
"@auth0/nextjs-auth0": "^1.9.2",
"@headlessui/react": "^1.7.14",
"@reduxjs/toolkit": "^1.7.1",
"@sentry/nextjs": "^7.31.1",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"axios": "^0.28.0",
"env-cmd": "^10.1.0",
"eslint-plugin-jest": "^27.2.1",
"expect.js": "^0.3.1",
"focus-trap-react": "^10.1.4",
"just-compare": "^2.3.0",
"just-debounce-it": "^3.2.0",
"just-is-primitive": "^2.3.0",
"jwt-decode": "^3.1.2",
"lodash.uniqby": "^4.7.0",
"next": "^13.4.3",
"next-router-mock": "^0.9.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"redux-persist": "^6.0.0",
"sharp": "^0.32.6",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@playwright/test": "1.38",
"@svgr/webpack": "^8.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.6",
"@typescript-eslint/parser": "^5.59.7",
"add": "^2.0.6",
"autoprefixer": "^10.4.14",
"checkly": "^4.0.8",
"eslint": "^8.7.0",
"eslint-config-next": "^13.4.3",
"husky": "^7.0.4",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"postcss": "^8.4.23",
"redux-mock-store": "^1.5.4",
"tailwindcss": "^3.3.2",
"typescript": "<5.2.0",
"whatwg-fetch": "^3.6.2"
}
}