forked from xgeekshq/split
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (22 loc) · 824 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "split",
"version": "v0.1.28",
"private": true,
"scripts": {
"prepare": "concurrently \"npm:prepare:backend\" \"npm:prepare:frontend\" \"husky install\"",
"prepare:backend": "cd backend && npm i",
"prepare:frontend": "cd frontend && npm i",
"dev": "concurrently \"npm:backend\" \"npm:frontend\"",
"frontend": "npm run dev --prefix frontend/",
"backend": "npm run start:dev --prefix backend",
"pre-commit": "concurrently \"npm:pre-commit:backend\" \"npm:pre-commit:frontend\"",
"pre-commit:backend": "npm run pre-commit --prefix backend",
"pre-commit:frontend": "npm run pre-commit --prefix frontend"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"concurrently": "^8.2.0",
"husky": "^9.0.11"
}
}