forked from vuestorefront/vue-storefront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 4.74 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
{
"name": "root",
"private": true,
"scripts": {
"build:bp": "yarn build:bp:tools && yarn build:bp:theme",
"build:bp:api-client": "cd packages/boilerplate/api-client && yarn build",
"build:bp:composables": "cd packages/boilerplate/composables && yarn build",
"build:bp:theme": "cd packages/boilerplate/theme && yarn build",
"build:bp:tools": "yarn build:core && yarn build:bp:api-client && yarn build:bp:composables",
"build:core": "yarn build:core:core && yarn build:core:cache && yarn build:core:middleware && yarn build:core:nuxt-module",
"build:core:core": "cd packages/core/core && yarn build",
"build:core:cache": "cd packages/core/cache && yarn build",
"build:core:middleware": "cd packages/core/middleware && yarn build",
"build:core:nuxt-module": "cd packages/core/nuxt-module && yarn build",
"build:ct": "yarn build:ct:tools && yarn build:ct:theme",
"build:ct:api-client": "cd packages/commercetools/api-client && yarn build",
"build:ct:composables": "cd packages/commercetools/composables && yarn build",
"build:ct:theme": "cd packages/commercetools/theme && yarn build",
"build:ct:tools": "yarn build:core && yarn build:ct:api-client && yarn build:ct:composables",
"build:docs": "cd packages/core/docs && yarn build",
"build:middleware": "cd packages/core/middleware && yarn build",
"cli": "cd packages/core/cli && yarn cli",
"commit": "cz",
"core:changelog": "cd packages/core/docs/scripts && node changelog --in ../changelog --out ../reference/changelog.md",
"ct:changelog": "cd packages/core/docs/scripts && node changelog --in ../commercetools/changelog --out ../commercetools/changelog.md",
"dev:bp": "cd packages/boilerplate/theme && yarn dev",
"dev:ct": "cd packages/commercetools/theme && yarn dev",
"dev:ct:api-client": "cd packages/commercetools/api-client && yarn dev",
"dev:ct:composables": "cd packages/commercetools/composables && yarn dev",
"dev:docs": "cd packages/core/docs && yarn dev",
"link-packages": "lerna link --force-local",
"lint": "eslint . --ext .js,.ts,.vue",
"start:bp": "cd packages/boilerplate/theme && yarn start",
"start:ct": "cd packages/commercetools/theme && yarn start",
"test:cache": "cd packages/core/cache && yarn test",
"test:cli": "cd packages/core/cli && yarn test",
"test:core": "cd packages/core/core && yarn test",
"test:middleware": "cd packages/core/middleware && yarn test",
"test:ct": "yarn test:ct:api-client && yarn test:ct:composables",
"test:ct:api-client": "cd packages/commercetools/api-client && yarn test",
"test:ct:composables": "cd packages/commercetools/composables && yarn test",
"test:e2e": "./node_modules/.bin/cypress open",
"test:e2e:bp": "cd packages/boilerplate/theme && yarn run test:e2e",
"test:e2e:bp:generate:report": "cd packages/boilerplate/theme && yarn run test:e2e:generate:report",
"test:e2e:bp:hl": "cd packages/boilerplate/theme && yarn run test:e2e:hl",
"test:e2e:ct": "cd packages/commercetools/theme && yarn run test:e2e",
"test:e2e:ct:generate:report": "cd packages/commercetools/theme && yarn run test:e2e:generate:report",
"test:e2e:ct:hl": "cd packages/commercetools/theme && yarn run test:e2e:hl"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-replace": "^3.0.0",
"@types/jest": "^26.0.24",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"@vue/eslint-config-typescript": "^7.0.0",
"commitizen": "^4.2.4",
"cross-env": "^6.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.6.0",
"husky": "^4.2.3",
"jest": "^27.0.6",
"lerna": "^3.15.0",
"lint-staged": "^10.0.7",
"rimraf": "^3.0.2",
"rollup": "^2.59.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.3",
"ts-node": "^8.4.1",
"tslib": "^2.1.0",
"typescript": "^4.2.2",
"vue-eslint-parser": "^7.0.0",
"webpack-bundle-analyzer": "^3.5.2"
},
"workspaces": {
"packages": [
"packages/**/*"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog",
"maxHeaderWidth": 100,
"maxLineWidth": 100
}
},
"engines": {
"node": ">=12.x"
}
}