forked from Pinelab-studio/pinelab-vendure-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.52 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "pinelab-vendure-plugins",
"private": true,
"workspaces": [
"packages/*"
],
"keywords": [
"vendure",
"vendure-plugins",
"vendure-packages"
],
"scripts": {
"postinstall": "yarn husky install",
"build": "yarn lerna run build --concurrency 1",
"loading-message": "echo \"\\033[0;36mLinting... This might take a minute\\033[0m\"",
"lint": "yarn loading-message && NODE_OPTIONS=\"--max-old-space-size=8192\" yarn eslint",
"lint:check": "yarn prettier --check . && yarn lint .",
"lint:fix": "yarn prettier --write . && yarn lint --fix .",
"upgrade:vendure": "yarn lerna exec --concurrency 1 \"yarn upgrade --pattern @vendure --latest\"",
"remove-node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"bump-all-versions": "lerna version --no-git-tag-version"
},
"devDependencies": {
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"@google-cloud/storage": "5.18.2",
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/typed-document-node": "^5.0.1",
"@graphql-codegen/typescript": "2.4.8",
"@graphql-codegen/typescript-document-nodes": "2.2.8",
"@graphql-codegen/typescript-operations": "2.3.5",
"@nestjs/cli": "8.2.4",
"@rollup/plugin-typescript": "11.0.0",
"@swc/core": "1.3.59",
"@types/localtunnel": "^2.0.4",
"@types/sharp": "0.28.0",
"@types/tmp": "0.2.3",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@vendure/admin-ui-plugin": "2.1.2",
"@vendure/asset-server-plugin": "2.1.2",
"@vendure/core": "2.1.2",
"@vendure/email-plugin": "2.1.2",
"@vendure/payments-plugin": "2.1.2",
"@vendure/testing": "2.1.2",
"@vendure/ui-devkit": "2.1.2",
"aws-sdk": "2.1099.0",
"copyfiles": "2.4.1",
"eslint": "8.0.1",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard-with-typescript": "34.0.1",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-n": "15.0.0",
"eslint-plugin-promise": "6.0.0",
"graphql-tag": "2.12.6",
"husky": "8.0.2",
"lerna": "6.0.3",
"localtunnel": "^2.0.2",
"nock": "13.2.4",
"nodemon": "2.0.15",
"prettier": "2.8.7",
"prettier-plugin-astro": "^0.10.0",
"rimraf": "3.0.2",
"rollup": "3.19.0",
"ts-node": "^10.9.0",
"typescript": "4.9.5",
"unplugin-swc": "1.3.2",
"vitest": "1.1.3",
"wsdl-tsclient": "1.3.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-enum": [
2,
"always",
[
"accept-blue",
"admin-social-auth",
"admin-ui-helpers",
"all-plugins",
"anonymized-order",
"change-order-customer",
"coinbase",
"customer-managed-groups",
"docs-website",
"dutch-postalcode",
"e-boekhouden",
"goedgepickt",
"google-cloud-tasks",
"google-storage-assets",
"invoices",
"limit-variant",
"metrics",
"modify-customer-orders",
"multiserver-db-sessioncache",
"myparcel",
"order-export",
"picqer",
"popularity-scores",
"primary-collection",
"selectable-gifts",
"sendcloud",
"shipping-extensions",
"facet-suggestions",
"stock-monitoring",
"stripe-subscription",
"variant-bulk-update",
"vendure-order-client",
"webhook",
"picklist"
]
]
}
}
}