-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1001 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "qhlab-monorepo-template",
"version": "0.1.0",
"author": "Yoki Yu <yokiyuqian@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"app",
"packages/*"
],
"scripts": {
"prepare": "husky install",
"postinstall": "preconstruct dev",
"dev": "preconstruct dev && lerna run dev --scope=app",
"build": "preconstruct build && lerna run build --scope=app",
"lint": "lerna run lint -- --fix",
"new-version": "lerna version"
},
"devDependencies": {
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@preconstruct/cli": "^2.2.0",
"@qhlab/eslint-plugin": "^1.10.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.19.0",
"husky": "^8.0.1",
"lerna": "^5.1.8",
"nx": "^14.4.2",
"typescript": "^4.7.4"
},
"preconstruct": {
"packages": [
"packages/*"
]
}
}