-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "p2p-chat",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"test": "jest --watch",
"lint": "next lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"next": "11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"socket.io": "^4.2.0",
"socket.io-client": "^4.2.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/react": "17.0.27",
"@types/socket.io-client": "^3.0.0",
"autoprefixer": "^10.3.7",
"babel-jest": "^27.2.5",
"eslint": "8.0.0",
"eslint-config-next": "11.1.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.5",
"postcss": "^8.3.9",
"react-test-renderer": "^17.0.2",
"sass": "^1.42.1",
"tailwindcss": "^2.2.16",
"typescript": "4.4.3"
}
}