forked from Pinelab-studio/pinelab-vendure-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.5 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "pinelab-vendure-plugins",
"private": true,
"keywords": [
"vendure",
"vendure-plugins",
"vendure-packges"
],
"scripts": {
"postinstall": "yarn husky install",
"build": "yarn && yarn prettier:write && yarn lerna exec --concurrency 1 -- yarn && yarn lerna run build --concurrency 1",
"lerna:publish": "yarn build && git stash && yarn lerna publish --conventional-commits --changelog-preset conventionalcommits",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check .",
"upgrade:vendure": "yarn lerna exec \"yarn upgrade --pattern @vendure --latest\"",
"remove-node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"husky": "^8.0.2",
"lerna": "^6.0.3",
"prettier": "^2.7.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-enum": [
2,
"always",
[
"coinbase",
"dutch-postalcode",
"e-boekhouden",
"goedgepickt",
"google-cloud-tasks",
"google-storage-assets",
"invoices",
"myparcel",
"webhook",
"admin-ui-helpers",
"order-export",
"shipping",
"stock-monitoring",
"sendcloud",
"metrics",
"limit-variant",
"all-plugins"
]
]
}
}
}