-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.59 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
33
34
35
36
37
38
39
40
41
42
{
"name": "delivery-management-system",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"setup": "npm i && cd frontend && npm i && cd .. && cd backend && npm i",
"start": "concurrently --names \"Backend,Frontend\" -c \"bgBlue.bold,bgGreen.bold\" \"npm run server:dev\" \"npm run app:dev\"",
"prepare": "husky install",
"app:dev": "cd frontend && npm run dev",
"app:build": "cd frontend && npm run build",
"app:start": "cd frontend && npm run start",
"server:dev": "cd backend && npm run start:dev",
"server:start": "cd backend && npm run start",
"server:build": "cd backend && npm run build",
"server:prod": "cd backend && npm run start:prod",
"prisma:migrate": "cd backend && npm run prisma:migrate",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/maruffahmed/Delivery-management-system.git"
},
"author": "Md Maruf Ahmed",
"license": "ISC",
"bugs": {
"url": "https://github.com/maruffahmed/Delivery-management-system/issues"
},
"homepage": "https://github.com/maruffahmed/Delivery-management-system#readme",
"dependencies": {
"concurrently": "^7.6.0"
},
"devDependencies": {
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.3",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}