-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.01 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
{
"name": "toonchat-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test": "jest",
"test:e2e": "playwright test",
"test:e2e-ui": "playwright test --ui",
"test:e2e-report": "playwright show-report"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint"
]
},
"dependencies": {
"@datadog/browser-rum": "^4.50.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@stomp/stompjs": "^7.0.0",
"@types/next-auth": "^3.15.0",
"@types/node": "20.4.0",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@types/sockjs-client": "^1.5.1",
"axios": "^1.4.0",
"bcrypt": "^5.1.1",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "13.4.8",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^3.1.2",
"next": "13.4.8",
"next-auth": "^4.23.1",
"next-pwa": "^5.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"sockjs-client": "^1.6.1",
"typescript": "5.1.6",
"zustand": "^4.3.9"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@playwright/test": "^1.37.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/socket.io": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"lint-staged": "^13.2.3"
}
}