-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 997 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
{
"name": "ReposSite",
"version": "1.0.0",
"description": "ReposSite\r This will be a site with a running server behind that it will create a html listing all projects that are in your PC that has a .git in it, and in this list each project name will be set as a link that when the user click it, it will open the project with VSCode.",
"dependencies": {
"config": "^3.3.6",
"express": "^4.17.1"
},
"devDependencies": {
"concurrently": "^6.0.2",
"nodemon": "^2.0.7"
},
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/masterkey-07/ReposSite.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/masterkey-07/ReposSite/issues"
},
"homepage": "https://github.com/masterkey-07/ReposSite#readme"
}