-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 967 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "localgrub-app",
"version": "1.0.0",
"description": "LocalGrub 🍔 Food Delivery Platform",
"main": "index.js",
"scripts": {
"dev": "concurrently -k \"npm run dev --prefix client \" \"npm run dev --prefix server/payment-service \" \" npm run dev --prefix server/restaurant-service \" \" npm run dev --prefix server/order-service \" \" npm run dev --prefix server/notification-service \" ",
"build": "tsc",
"prettier:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\" --ignore-path .gitignore",
"prettier:write": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\" --ignore-path .gitignore",
"format": "npm run prettier:write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^9.1.2",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"prettier": "^3.6.2"
}
}