-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.15 KB
/
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
39
{
"name": "arc-saas",
"private": false,
"scripts": {
"prepare": "husky install",
"build": "npm run build --workspaces --if-present",
"test": "lerna run test",
"migrate": "npm run db:migrate --workspaces --if-present",
"clean-deps": "lerna clean --yes && lerna exec --no-private \"npm install --ignore-scripts --package-lock-only --no-audit\"",
"export-typedocs": "npx tsc export-typedocs.ts && node export-typedocs",
"clean": "npm run clean --workspaces --if-present"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@commitlint/config-lerna-scopes": "^16.0.0",
"custom-sf-changelog": "file:packages/custom-sf-changelog",
"commitizen": "^4.2.4",
"concurrently": "^8.2.2",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"husky": "^7.0.4",
"lerna": "^7.3.0"
},
"workspaces": [
"services/*",
"packages/custom-sf-changelog/"
],
"overrides": {
"@commitlint/config-lerna-scopes": {
"lerna": "^7.3.0"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}