This repository has been archived by the owner on Aug 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
68 lines (68 loc) · 2.68 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
{
"name": "vuestorefront-next-shopify-integration",
"private": true,
"license": "MIT",
"engines": {
"node": ">=10.x"
},
"scripts": {
"build": "lerna run build --stream",
"build:deps": "lerna run build --ignore @vue-storefront/shopify-theme --include-dependencies",
"build:api-client": "cd packages/api-client && yarn build",
"build:composables": "cd packages/composables && yarn build",
"build:apollo": "cd packages/apollo && yarn build",
"build:theme": "cd packages/theme && yarn build",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"dev": "yarn dev:deps && yarn dev:theme",
"dev:deps": "lerna exec --parallel yarn dev",
"dev:theme": "cd packages/theme && yarn dev",
"docs:build": "cd docs && yarn build",
"docs:dev": "cd docs && yarn dev",
"docs:install": "cd docs && yarn",
"lint": "eslint . --ext .ts,.vue",
"publish:apollo": "node ./scripts/publishApollo.js",
"publish:api-client": "node ./scripts/publishApi.js",
"publish:composables": "node ./scripts/publishComposable.js",
"start": "cd packages/theme && yarn start",
"test": "yarn test:apollo && yarn test:api-client && yarn test:composables && yarn test:theme",
"test:apollo": "cd packages/apollo && yarn test --passWithNoTests",
"test:api-client": "cd packages/api-client && yarn test --passWithNoTests",
"test:composables": "cd packages/composables && 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 && yarn install --force",
"generate:template": "cd packages/theme && rimraf ./.template && npx @vue-storefront/cli generate-template .template",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/config-lerna-scopes": "^13.1.0",
"@nuxtjs/eslint-config-typescript": "^8.0.0",
"@types/jest": "^27.0.0",
"@types/node": "^16.6.0",
"all-contributors-cli": "^6.20.0",
"commitizen": "^4.2.4",
"concurrently": "^6.2.1",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.0",
"jest": "^27.4.3",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"npm-check-updates": "^11.8.3",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"rollup": "^2.56.2",
"rollup-plugin-typescript2": "^0.31.0",
"ts-jest": "^27.0.4",
"ts-node": "^10.2.0",
"tslib": "^2.3.1",
"typescript": "~4.2"
},
"workspaces": [
"packages/*"
]
}