-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 746 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 746 Bytes
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
{
"name": "my-monorepo",
"version": "1.0.0",
"private": true,
"scripts": {
"client": "pnpm --prefix client dev",
"server": "pnpm --prefix server start",
"dev": "pnpm run client & pnpm run server",
"commit": "commit",
"prepare": "husky",
"format": "pnpm --prefix client lint --fix && pnpm --prefix server lint && git update-index --again"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/prompt-cli": "^19.2.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"dotenv": "^16.4.5"
}
}