-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.09 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.09 KB
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
{
"name": "dev-unity",
"private": true,
"version": "0.0.0",
"scripts": {
"prepare": "husky",
"dev-fe": "cd frontend && npm run dev",
"dev-be": "cd backend && npm run dev",
"dev": "concurrently \"npm run dev-fe\" \"npm run dev-be\"",
"lint-fe:check": "cd frontend && npm run lint:check",
"lint-fe:fix": "cd frontend && npm run lint:fix",
"pretty-fe:check": "cd frontend && npm run pretty:check",
"pretty-fe:fix": "cd frontend && npm run pretty:fix",
"lint-be:check": "cd backend && npm run lint:check",
"lint-be:fix": "cd backend && npm run lint:fix",
"pretty-be:check": "cd backend && npm run pretty:check",
"pretty-be:fix": "cd backend && npm run pretty:fix",
"lint:check": "npm run lint-be:check && npm run lint-fe:check",
"lint:fix": "npm run lint-be:fix && npm run lint-fe:fix",
"pretty:check": "npm run pretty-be:check && npm run pretty-fe:check",
"pretty:fix": "npm run pretty-be:fix && npm run pretty-fe:fix"
},
"author": "m4dd0c",
"license": "ISC",
"devDependencies": {
"concurrently": "^9.1.0",
"husky": "^9.1.7"
}
}