-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 842 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": "grade-calculator-v3",
"version": "1.0.0",
"description": "Grade Calculator V3",
"main": "index.js",
"scripts": {
"start": "concurrently --kill-others \"npm run start:frontend\" \"npm run start:backend\"",
"start:frontend": "cd frontend && npm run start",
"start:backend": "cd backend && npm run start",
"dev:backend": "cd backend && npm run dev",
"dev": "concurrently --kill-others \"npm run start:frontend\" \"npm run dev:backend\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/konekowo/Grade-Calculator-V3.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/konekowo/Grade-Calculator-V3/issues"
},
"homepage": "https://github.com/konekowo/Grade-Calculator-V3#readme",
"devDependencies": {
"concurrently": "^8.2.2"
}
}