forked from clever-developer-club/spider-bug-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 930 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
{
"name": "spider-bug-tracker",
"version": "1.0.0",
"description": "Spider Bug Tracker is Web application for tracking the bugs during software development period. It has a clean and user-friendly GUI with great functionality.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client": "cd client && npm start",
"server": "cd server && npx nodemon server.js",
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/clever-developer-club/spider-bug-tracker.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/clever-developer-club/spider-bug-tracker/issues"
},
"homepage": "https://github.com/clever-developer-club/spider-bug-tracker#readme",
"dependencies": {
"react-scripts": "^5.0.0"
}
}