-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "chatme",
"version": "1.0.0",
"description": "Chat app built with Express & Socket.io",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node src/presentation/server.js",
"concurrently": "concurrently \"npm run dev:server\" \"npm run dev:client\" ",
"dev:server": "nodemon src/presentation/server.js",
"dev:client": "npm run dev --prefix client",
"build:client": "npm run build --prefix client",
"lint": "eslint . --ext .js",
"prettier": "prettier --write \"**/*.{js,json}\""
},
"keywords": [],
"author": "Jeferson S. Brito",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"morgan": "^1.10.0",
"socket.io": "^4.5.4",
"uuid": "^9.0.0",
"web-push": "^3.5.0"
},
"devDependencies": {
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.0"
}
}