forked from xgeekshq/split
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
22 lines (22 loc) · 823 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.16",
"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": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"concurrently": "^7.6.0",
"husky": "^8.0.1"
}
}