-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 1.23 KB
/
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
31
32
{
"name": "schedule-e-hamdard",
"version": "1.0.0",
"description": "Schedule-e-Hamdard",
"main": "index.js",
"scripts": {
"install-frontend": "cd frontend && npm install",
"install-backend": "cd backend && npm install",
"remove-frontend": "cd frontend && rm -rf node_modules",
"remove-backend": "cd backend && rm -rf node_modules",
"install-modules-full": "npm install && npm run install-frontend && npm run install-backend",
"remove-modules-full": "rm -rf node_modules && npm run remove-frontend && npm run remove-backend",
"frontend": "cd frontend && npm run start",
"backend": "cd backend && npm run dev",
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"pretty": "cd backend && npm run pretty && cd ../frontend && npm run pretty",
"build": "cd backend && npm run dev && cd ../frontend && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yahya-cloud/schedule-e-hamdard.git"
},
"author": "Yahya",
"license": "ISC",
"bugs": {
"url": "https://github.com/yahya-cloud/schedule-e-hamdard/issues"
},
"homepage": "https://github.com/yahya-cloud/schedule-e-hamdard#readme",
"devDependencies": {
"concurrently": "^6.4.0"
}
}