-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 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
{
"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": "node --watch 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}\"",
"upgrade": "taze -I"
},
"keywords": [],
"author": "Jeferson S. Brito",
"license": "MIT",
"engines": {
"node": ">=22"
},
"dependencies": {
"concurrently": "^9.2.1",
"dotenv": "^16.5.0",
"express": "^5.2.1",
"morgan": "^1.10.1",
"socket.io": "^4.8.3",
"uuid": "^11.1.0",
"web-push": "^3.6.7"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"jest": "^29.7.0",
"prettier": "^3.8.1",
"taze": "^19.9.2"
}
}