-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 765 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 765 Bytes
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
{
"name": "chatllama",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "nodemon src/app.js",
"server": "nodemon src/server/server.js",
"build:css": "npx @tailwindcss/cli -i ./src/public/css/main.css -o ./src/public/css/tailwind.css --watch",
"dev": "concurrently \"npm:server\" \"npm:start\" \"npm:build:css\""
},
"dependencies": {
"@tailwindcss/cli": "^4.0.6",
"axios": "^1.3.0",
"bcrypt": "^5.1.0",
"concurrently": "^9.1.2",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.18.2",
"mongoose": "^7.0.1",
"path": "^0.12.7",
"socket.io": "^4.6.1",
"tailwindcss": "^4.0.6"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}