forked from vuestorefront/magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.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
{
"name": "vue-storefront",
"private": true,
"license": "MIT",
"homepage": "https://github.com/vuestorefront/magento2",
"bugs": {
"url": "https://github.com/vuestorefront/magento2/issues"
},
"workspaces": [
"packages/*",
"internals/*"
],
"scripts": {
"build": "yarn build:api-client",
"build:api-client": "cd packages/api-client && yarn build",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"dev:api-client": "cd packages/api-client && yarn dev",
"docs:install": "cd docs && yarn",
"docs:dev": "cd docs && yarn dev",
"docs:build": "cd docs && yarn build",
"graphql:codegen": "graphql-codegen --config codegen.yml",
"lint": "eslint . --ext .ts,.vue",
"prepare": "[ -d '.husky' ] && (husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks) || true",
"test": "yarn test:api-client",
"test:api-client": "cd packages/api-client && yarn test --passWithNoTests",
"update:check": "ncu && lerna run update:check --stream",
"update:update": "ncu -u && lerna run update:update --stream"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@commitlint/config-lerna-scopes": "^16.0.0",
"all-contributors-cli": "^6.20.0",
"esbuild": "^0.14.23",
"eslint": "8.8.0",
"lerna": "^4.0.0",
"lint-staged": "^12.3.3"
},
"engines": {
"node": ">=16.x.x",
"yarn": "1.x.x||>=3.x.x"
},
"packageManager": "[email protected]"
}