-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 730 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "petty-revenge-notes",
"version": "1.0.0",
"private": true,
"description": "Petty Revenge Notes",
"main": "index.js",
"scripts": {
"backend": "npm run dev --prefix backend",
"frontend": "npm run dev --prefix frontend",
"admin": "npm run dev --prefix admin",
"dev": "concurrently \"npm run backend\" \"npm run frontend\" \"npm run admin\"",
"build": "npm run build --prefix backend && npm run build --prefix frontend && npm run build --prefix admin",
"lint": "npm run lint --prefix backend && npm run lint --prefix frontend && npm run lint --prefix admin"
},
"keywords": [],
"author": "Mohanish Pingale",
"license": "MIT",
"dependencies": {
"concurrently": "^9.2.1"
}
}