forked from naamnamm/chat-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"name": "chat-app",
"version": "1.0.0",
"description": "Boilerplate for React and server.js",
"main": "server.js",
"scripts": {
"start": "server.js",
"client": "npm run watch --prefix client",
"dev": "concurrently \"nodemon server.js\" \"npm run client\"",
"heroku-prebuild": "npm i --prefix client && npm run build --prefix client",
"heroku-postbuild": "echo This runs afterwards."
},
"repository": {
"type": "git",
"url": "git+https://github.com/naamnamm/chat-app.git"
},
"author": "Naam Pondpat",
"license": "ISC",
"bugs": {
"url": "https://github.com/naamnamm/chat-app/issues"
},
"homepage": "https://github.com/naamnamm/chat-app#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.12",
"moment": "^2.27.0",
"pg": "^8.4.1",
"socket.io": "^2.3.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.4"
},
"engines": {
"node": "12.18.1"
}
}