-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.34 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
{
"name": "effective-tech-interview-client",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"format": "prettier --check ./src",
"format:fix": "prettier --write ./src",
"prepare": "husky install",
"test": "jest",
"test:ci": "jest --ci",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@babel/core": "^7.21.0",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@next/font": "13.1.6",
"@tanstack/react-query": "4.24.6",
"@toss/emotion-utils": "^1.1.5",
"@toss/react": "^1.3.7",
"@toss/use-overlay": "^1.3.1",
"@toss/utils": "^1.4.1",
"axios": "1.3.3",
"framer-motion": "^10.0.0",
"next": "13.1.6",
"playwright": "^1.31.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "3.1.4",
"react-hook-form": "^7.43.2",
"recoil": "0.7.6",
"typescript": "4.9.5"
},
"devDependencies": {
"@commitlint/cli": "17.4.3",
"@commitlint/config-conventional": "17.4.3",
"@playwright/test": "1.31.2",
"@svgr/webpack": "^6.5.1",
"@tanstack/react-query-devtools": "4.24.6",
"@testing-library/dom": "9.0.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.4.0",
"@types/node": "18.13.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.10",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"eslint": "8.34.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-jest-dom": "4.0.3",
"eslint-plugin-playwright": "0.12.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-testing-library": "5.10.2",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "^8.0.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"lint-staged": "13.1.2",
"prettier": "2.8.4"
}
}