-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 894 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
{
"name": "twitter-clone-mern-stack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"i": "cd tests/ && npm i && cd .. && cd socket/ && npm install && cd .. && cd frontend/ && npm install && cd .. && cd backend/ && npm install",
"install": "npm run i",
"app": " concurrently 'cd backend/ && npm run dev' 'cd frontend/ && npm run dev' 'cd socket/ && npm run dev' ",
"cypress": "'cd tests/ && npx cypress open'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LakshmiSanikommu/Twitter-Clone.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LakshmiSanikommu/Twitter-Clone/issues"
},
"homepage": "https://github.com/LakshmiSanikommu/Twitter-Clone#readme",
"dependencies": {
"concurrently": "^7.6.0"
}
}