-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.35 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
{
"name": "beerdegu-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test-ct": "playwright test -c playwright-ct.config.ts",
"test-e2e": "playwright test -c playwright.config.ts"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@mantine/core": "^6.0.7",
"@mantine/dates": "^6.0.17",
"@mantine/dropzone": "^6.0.19",
"@mantine/form": "^6.0.7",
"@mantine/hooks": "^6.0.7",
"@mantine/modals": "^6.0.7",
"@mantine/notifications": "^6.0.7",
"@next/bundle-analyzer": "^13.4.6",
"@tabler/icons-react": "^2.16.0",
"@tanstack/react-query": "^4.29.15",
"@tanstack/react-table": "^8.9.2",
"axios": "^1.4.0",
"cookies-next": "^2.1.1",
"dayjs": "^1.11.9",
"jsonwebtoken": "^9.0.0",
"mantine-react-table": "^1.0.0",
"next": "^13.4.6",
"next-auth": "^4.22.1",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "18.2.0",
"react-infinite-scroll-component": "^6.1.0",
"react-use-websocket": "^4.3.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@playwright/experimental-ct-react": "^1.32.3",
"@playwright/test": "^1.32.3",
"@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/eslint": "^8.37.0",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^18.15.11",
"@types/react": "^18.0.35",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-dom": "^18.0.11",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-next": "^13.3.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-testing-library": "^5.10.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"msw": "^1.2.1",
"playwright-msw": "^2.2.1",
"start-server-and-test": "^2.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"ct3aMetadata": {
"initVersion": "7.10.1"
}
}