-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
45 lines (45 loc) · 1.53 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-magento2",
"private": true,
"version": "0.0.0",
"license": "MIT",
"homepage": "https://github.com/vuestorefront/magento2",
"bugs": {
"url": "https://github.com/vuestorefront/magento2/issues"
},
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"build": "turbo run build",
"test": "turbo run test",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"lint": "turbo run lint",
"ci": "turbo run build test:unit test:integration lint --cache-dir=.turbo",
"changesets:version": "yarn changeset version && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install && yarn prepare:docs && yarn graphQlApiDocs:md",
"changesets:publish": "yarn build && yarn changeset publish",
"prepare:docs": "cd docs && yarn install && yarn api-extract && yarn copy-changelog",
"graphQlApiDocs:md": "ts-node scripts/generateGraphQlApiDocs.ts"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@vue-storefront/api-extractor-config": "^0.0.5",
"@vue-storefront/eslint-config-integrations": "^0.0.21",
"@vue-storefront/integrations-tsconfig": "^0.0.4",
"@vue-storefront/jest-config": "^0.0.4",
"@vue-storefront/rollup-config": "^0.0.7",
"all-contributors-cli": "^6.20.0",
"esbuild": "^0.14.23",
"lint-staged": "^12.3.3",
"rimraf": "^5.0.0",
"turbo": "^2",
"typescript": "^5"
},
"engines": {
"node": ">=18",
"yarn": "1.x.x||>=3.x.x"
},
"packageManager": "[email protected]"
}