-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "chat",
"author": "Mihail Gaberov <[email protected]>",
"version": "1.3.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "vitest",
"eject": "react-scripts eject",
"server:watch": "nodemon --watch 'src/**/*.ts' --exec \"node\" server/index.js"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.12",
"@fortawesome/free-solid-svg-icons": "^5.6.3",
"@fortawesome/react-fontawesome": "^0.2.0",
"express": "^4.21.1",
"get-urls": "^11.0.0",
"linkifyjs": "^2.1.7",
"path": "^0.12.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.6.2",
"react-scripts": "5.0.1",
"redux": "^4.0.1",
"socket.io": "^4.8.0",
"socket.io-client": "^4.7.5",
"styled-components": "^5.3.6",
"ts-node": "^8.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@types/express": "^4.17.15",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.120",
"@types/node": "^20.10.6",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-fontawesome": "^1.6.5",
"@types/react-redux": "^7.1.25",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.2.1",
"jsdom": "^23.0.1",
"lodash": "^4.17.21",
"nodemon": "^2.0.20",
"typescript": "^4.9.4",
"vitest": "^1.1.0"
},
"engines": {
"node": "18.x"
},
"browserslist": [
">0.2%",
"not ie <= 11",
"not op_mini all"
]
}