forked from PhoenixTheCoder/discord-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 866 Bytes
/
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
{
"name": "discord-clone",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "cd server && node index.js",
"client": "cd client && npm start",
"server": "cd server && nodemon index.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"format": "npx prettier --write .",
"lint": "eslint .",
"heroku-postbuild": "cd client && npm install --production --no-shrinkwrap && npm run build"
},
"author": "King Yiu Suen",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.1",
"concurrently": "^6.4.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"pg": "^8.7.1",
"socket.io": "^4.4.0"
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.3.0",
"nodemon": "^2.0.15",
"prettier": "^2.4.1"
}
}