-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.1 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
{
"name": "crescendo-frontend",
"version": "0.1.0",
"repository": {
"type": "project",
"url": "https://github.com/crescenders/crescendo-frontend"
},
"contributors": [
{
"name": "Tae Hyeon Kim",
"email": "[email protected]"
},
{
"name": "Ha Lam Lee",
"email": "[email protected]"
},
{
"name": "Tae Young Kim",
"email": "[email protected]"
}
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watchAll",
"test:coverage": "jest --coverage",
"cypress:open": "cypress open --e2e --browser chrome",
"cypress:run": "cypress run --e2e --browser chrome --headless"
},
"dependencies": {
"@tanstack/react-query": "^5.7.2",
"@tanstack/react-query-devtools": "^5.7.4",
"axios": "^1.3.6",
"date-fns": "^2.30.0",
"dompurify": "^3.0.5",
"lottie-react": "^2.4.0",
"next": "13.3.1",
"next-pwa": "^5.6.0",
"pretendard": "^1.3.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-quill": "^2.0.0",
"recoil": "^0.7.7"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@types/dompurify": "^3.0.2",
"@types/jest": "^29.5.8",
"@types/next-pwa": "^5",
"@types/node": "18.16.1",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"autoprefixer": "^10.4.14",
"cypress": "^13.5.0",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-tailwindcss": "^3.12.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"msw": "^1.2.3",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"start-server-and-test": "^2.0.2",
"tailwindcss": "^3.3.2",
"typescript": "5.0.4"
},
"packageManager": "[email protected]",
"msw": {
"workerDirectory": "public"
}
}