-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.69 KB
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
{
"name": "instant-chat",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "next lint",
"fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"test": "jest"
},
"dependencies": {
"@ant-design/icons": "^5.3.6",
"@babel/core": "^7.0",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@reduxjs/toolkit": "^1.9.5",
"@testing-library/dom": "^7.21.4",
"antd": "^5.16.1",
"axios": "^1.6.8",
"dexie": "^4.0.4",
"jest-sonar-reporter": "^2.0.0",
"next": "^13.4.12",
"next-images": "^1.8.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.1.2",
"react-router-dom": "^6.22.3",
"sass": "^1.75.0",
"socket.io-client": "^4.7.5",
"yarn": "^1.22.22"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.0",
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "8.46.0",
"eslint-config-next": "13.4.12",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.11",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"localforage": "^1.10.0",
"match-sorter": "^6.3.1",
"react-scripts": "5.0.1",
"sort-by": "^1.2.0",
"ts-jest": "^29.0.3",
"typescript": "5.4.5",
"web-vitals": "^3.4.0"
}
}