forked from vuestorefront/magento2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 3.19 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
{
"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 && yarn build:theme",
"build:api-client": "cd packages/api-client && yarn build",
"build:theme": "cd packages/theme && yarn build",
"build:composables": "cd packages/composables && yarn build",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"dev:api-client": "cd packages/api-client && yarn dev",
"dev:theme": "cd packages/theme && 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",
"publish:api-client": "node ./scripts/publishApi.js",
"publish:composables": "node ./scripts/publishComposable.js",
"start": "cd packages/theme && yarn start",
"start:local": "cd packages/theme && yarn start:local",
"test": "yarn test:api-client && yarn test:theme",
"test:api-client": "cd packages/api-client && yarn test --passWithNoTests",
"test:theme": "cd packages/theme && yarn test --passWithNoTests",
"update:check": "ncu && lerna run update:check --stream",
"update:update": "ncu -u && lerna run update:update --stream"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-private-methods": "^7.16.11",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@commitlint/config-lerna-scopes": "^16.0.0",
"@graphql-codegen/cli": "^2.4.0",
"@graphql-codegen/typescript": "^2.4.2",
"@graphql-codegen/typescript-operations": "^2.2.3",
"@graphql-tools/utils": "^8.6.1",
"@manypkg/cli": "^0.19.1",
"@types/graphql": "^14.5.0",
"@types/jest": "^27.4.0",
"@types/jsdom": "^16.2.14",
"@types/node": "^17.0.14",
"@types/webpack": "^5.28.0",
"@types/yargs": "^17.0.8",
"@typescript-eslint/parser": "^5.10.2",
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.4",
"ejs": "^3.1.6",
"esbuild": "^0.14.23",
"eslint": "8.8.0",
"execa": "^6.1.0",
"graphql": "^16.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-date-mock": "^1.0.8",
"jest-localstorage-mock": "^2.4.18",
"jest-silent-reporter": "^0.5.0",
"jest-transform-stub": "^2.0.0",
"jest-watch-toggle-config": "^2.0.1",
"jest-watch-typeahead": "^1.0.0",
"lerna": "^4.0.0",
"lint-staged": "^12.3.3",
"majestic": "^1.8.1",
"npm-check-updates": "^12.2.1",
"rimraf": "^3.0.2",
"shx": "^0.3.4",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"vue-eslint-parser": "^8.2.0",
"yargs": "^17.3.1"
},
"engines": {
"node": ">=16.x.x",
"yarn": "1.x.x||>=3.x.x"
},
"packageManager": "[email protected]"
}