-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 945 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 945 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
30
31
32
33
34
35
{
"name": "chatapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server": "cd server && npm run dev",
"client": "cd client && npm start",
"init": "cd client && npm i && cd ../server && npm i",
"test": "cd server && npm t",
"start": "cross-env NODE_ENV=production node ./server/src",
"heroku-postbuild": "NODE_ENV=production cd client && npm run build",
"install": "npm run init",
"kill": "fuser -k 4000/tcp"
},
"cacheDirectories": [
"node_modules",
"server/node_modules",
"client/node_modules"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AhmedSafi97/chatapp.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AhmedSafi97/chatapp/issues"
},
"homepage": "https://github.com/AhmedSafi97/chatapp#readme",
"dependencies": {
"cross-env": "^7.0.2"
}
}