-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.85 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
{
"private": true,
"husky": {
"hooks": {
"pre-commmit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 3000",
"test": "jest --passWithNoTests",
"test:ci": "jest --ci",
"lint": "prettier pages components --write && eslint pages components --fix",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@hello-pangea/dnd": "^16.3.0",
"@react-icons/all-files": "^4.1.0",
"@stomp/stompjs": "^7.0.0",
"@tanstack/react-query": "^5.17.7",
"axios": "^1.4.0",
"cookie": "^0.5.0",
"eslint-plugin-testing-library": "^5.11.0",
"js-cookie": "^3.0.5",
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-markdown": "^8.0.7"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.17.7",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/js-cookie": "^3.0.3",
"@types/react": "18.0.28",
"@types/react-icons": "^3.0.0",
"@types/testing-library__jest-dom": "5.14.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"lint-staged": "^13.2.2",
"msw": "^1.2.1",
"next-router-mock": "^0.9.7",
"prettier": "^2.8.8",
"typescript": "4.9.5"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
},
"msw": {
"workerDirectory": "public"
}
}