forked from oryx-frontend/oryx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
183 lines (183 loc) · 8.61 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
"name": "oryx-frontend",
"version": "0.1.0",
"description": "Oryx composable frontend framework monorepo",
"repository": {
"type": "git",
"url": "https://github.com/oryx-frontend/oryx"
},
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"format:check": "npm run prettier -- --check",
"format:write": "npm run prettier -- --write",
"prettier": "prettier \"**/*.{js,ts,css,s?css,html,vue,json,ya?ml,mjs}\"",
"prepare": "husky install",
"build-storybook": "nx run storybook:build",
"build:executors": "tsc --project ./tools/tsconfig.tools.json",
"sf:e2e:open:smoke": "npx concurrently --kill-others --success first \"npx nx run storefront:serve-prod\" \"wait-on -i=2000 -c wait-on-config.json http-get://localhost:3001/ && npx nx run storefront-e2e:e2e:smoke\"",
"sf:e2e:headless:smoke": "npx concurrently --kill-others --success first \"npx nx run storefront:serve-prod\" \"wait-on -i=2000 -c wait-on-config.json http-get://localhost:3001/ && npx nx run storefront-e2e:e2e:headless-smoke\"",
"sf:e2e:headless:ci:smoke": "npx concurrently --kill-others --success first \"npx nx run storefront:serve-prod\" \"wait-on -i=2000 -c wait-on-config.json http-get://localhost:3001/ && npx nx run storefront-e2e:e2e:headless-ci-smoke\"",
"sf:e2e:headless:ci:visual-regression": "npx concurrently --kill-others --success first \"npx nx run storefront:serve-prod\" \"wait-on -i=2000 -c wait-on-config.json http-get://localhost:3001/ && npx percy exec -- npx nx run storefront-e2e:e2e:headless-ci-visual-regression\"",
"sf:e2e:open": "npx concurrently --kill-others --success first \"npx nx run storefront:serve-e2e\" \"wait-on -i=2000 -c wait-on-config.json http-get://localhost:3001/ && npx nx run storefront-e2e:e2e\"",
"sf:e2e:headless": "npx concurrently --kill-others --success first \"npx nx run storefront:serve-e2e\" \"wait-on -i=2000 -c wait-on-config.json http-get://localhost:3001/ && npx nx run storefront-e2e:e2e:headless\"",
"sf:e2e:headless:ci": "npx concurrently --kill-others --success first \"npx nx run storefront:serve-e2e\" \"wait-on -i=2000 -v -c wait-on-config.json http-get://localhost:3001/ && npx nx run storefront-e2e:e2e:headless-ci\"",
"sf:e2e:headless:ci:affected": "npx nx print-affected --select=projects | grep -E -v 'storefront' && echo 'nothing changed, skip' || npm run sf:e2e:headless:ci",
"sf:b2b:e2e:open": "ORYX_PRESET=b2b npx concurrently --kill-others --success first \"npx nx run storefront:serve-e2e\" \"wait-on -i=2000 -c wait-on-config.json http-get://localhost:3001/ && npx nx run storefront-e2e:e2e:b2b-open\"",
"sf:b2b:e2e:headless": "ORYX_PRESET=b2b npx concurrently --kill-others --success first \"npx nx run storefront:serve-e2e\" \"wait-on -i=2000 -c wait-on-config.json http-get://localhost:3001/ && npx nx run storefront-e2e:e2e:b2b-headless\"",
"sf:b2b:e2e:headless:ci": "ORYX_PRESET=b2b npx concurrently --kill-others --success first \"npx nx run storefront:serve-e2e\" \"wait-on -i=2000 -v -c wait-on-config.json http-get://localhost:3001/ && npx nx run storefront-e2e:e2e:b2b-headless-ci\"",
"sf:b2b:e2e:headless:ci:affected": "ORYX_PRESET=b2b npx nx print-affected --select=projects | grep -E -v 'storefront' && echo 'nothing changed, skip' || npm run sf:b2b:e2e:headless:ci",
"release-test:e2e": "npx nx run storefront-e2e:e2e:headless-ci-release",
"testfront": "cd apps/testfront && npm run dev &",
"testfront:e2e": "npx concurrently --kill-others --success first \"cd apps/testfront && npm run dev\" \"wait-on -c wait-on-config.json --verbose -i=2000 http-get://localhost:3001 && npm run release-test:e2e \"",
"release": "run-s release:*",
"release-test": "cd libs && npm run release-test",
"release-rc": "cd libs && npm run release-rc",
"release-minor": "cd libs && npm run release-minor",
"release-labs": "cd libs && npm run release-labs",
"release-patch": "cd libs && npm run release-patch",
"release:libs": "cd libs && npm run release",
"release-from-tag": "run-s release-from-tag:*",
"release-from-tag:libs": "cd libs && npm run release-from-tag",
"release-tag": "run-s release-tag:*",
"release-tag:libs": "cd libs && npm run release-tag",
"release-branch": "run-s release-branch:*",
"release-branch:libs": "cd libs && npm run release-branch",
"release-from-packages": "run-s release-from-packages:*",
"release-from-packages:libs": "cd libs && npm run release-from-packages"
},
"lint-staged": {
"*.{js,ts}": [
"eslint"
]
},
"private": true,
"devDependencies": {
"@cypress/grep": "^3.1.5",
"@netlify/functions": "^1.4.0",
"@nrwl/cli": "14.5.8",
"@nrwl/cypress": "14.5.8",
"@nrwl/devkit": "14.5.8",
"@nrwl/eslint-plugin-nx": "14.5.8",
"@nrwl/js": "14.5.8",
"@nrwl/linter": "14.5.8",
"@nrwl/storybook": "14.5.8",
"@nrwl/web": "14.5.8",
"@nrwl/workspace": "15.7.2",
"@percy/cli": "^1.27.1",
"@percy/cypress": "^3.1.2",
"@rollup/plugin-alias": "^4.0.2",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@storybook/addon-a11y": "^6.5.10",
"@storybook/addon-docs": "^6.5.16",
"@storybook/addon-essentials": "6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.14",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack5": "^6.5.14",
"@storybook/testing-library": "^0.0.13",
"@storybook/web-components": "^6.5.10",
"@stylelint/postcss-css-in-js": "^0.37.2",
"@types/globalize": "^1.5.2",
"@types/jsonapi-serializer": "~3.6.5",
"@types/node": "18.7.1",
"@types/request": "^2.48.8",
"@types/unzipper": "^0.10.5",
"@types/web": "^0.0.91",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "5.30.7",
"@vitest/coverage-c8": "^0.28.5",
"browserslist": "^4.20.3",
"chromatic": "^6.5.1",
"concurrently": "^7.6.0",
"copyfiles": "^2.4.1",
"cypress": "^13.1.0",
"cypress-log-to-output": "^1.1.2",
"cypress-wait-until": "^2.0.1",
"eslint": "8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-storybook": "^0.6.4",
"express": "^4.17.1",
"husky": "^7.0.2",
"jest-useragent-mock": "^0.1.1",
"jsdom": "^20.0.0",
"lerna": "^6.0.0",
"mockdate": "^3.0.5",
"npm-run-all": "^4.1.5",
"nx": "14.5.8",
"nx-stylelint": "^13.5.3",
"postcss": "^8.4.16",
"postcss-html": "^1.5.0",
"postcss-syntax": "^0.36.2",
"prettier": "2.7.1",
"prettier-plugin-organize-imports": "^3.2.3",
"rollup": "^2.78.0",
"rollup-plugin-inject-process-env": "^1.3.1",
"semver": "^7.5.4",
"source-map": "^0.7.4",
"storybook-addon-pseudo-states": "^1.15.2",
"storybook-addon-rtl": "^0.4.3",
"stylelint": "^14.11.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^28.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-no-unsupported-browser-features": "^5.0.3",
"stylelint-order": "^5.0.0",
"stylelint-use-logical-spec": "^3.2.2",
"tsx": "^3.12.6",
"typescript": "^5.0.0",
"vite": "4.1.1",
"vite-plugin-checker": "^0.4.9",
"vite-plugin-istanbul": "^3.0.0",
"vite-plugin-pwa": "~0.12.0",
"vite-plugin-static-copy": "^0.13.1",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.28.5",
"wait-on": "^7.0.1",
"webpack": "^5.76.2",
"webpack-assets-manifest": "^5.1.0"
},
"dependencies": {
"@clack/prompts": "^0.6.3",
"@lit-labs/ssr": "^3.1.2",
"@lit-labs/ssr-client": "^1.1.1",
"@open-wc/semantic-dom-diff": "^0.19.5",
"@open-wc/testing-helpers": "^2.1.2",
"@webcomponents/template-shadowroot": "^0.1.0",
"abort-controller": "^3.0.0",
"body-parser": "^1.20.2",
"chai-a11y-axe": "^1.4.0",
"cldr-data": "^36.0.1",
"cors": "^2.8.5",
"css-convert-json": "^1.1.0",
"dexie": "^3.2.2",
"dotenv": "^16.0.3",
"fast-glob": "^3.2.11",
"globalize": "^1.7.0",
"http-proxy-middleware": "^2.0.6",
"json-server": "^0.17.3",
"jsonapi-serializer": "~3.6.7",
"lit": "^2.7.4",
"marked": "^11.0.0",
"oauth4webapi": "^2.1.0",
"request": "^2.88.2",
"resize-observer-polyfill": "^1.5.1",
"rxjs": "7.5.6",
"serverless-http": "^3.2.0",
"tslib": "^2.3.0",
"unzipper": "^0.10.11",
"url-join": "^5.0.0",
"urlpattern-polyfill": "~4.0.3"
},
"overrides": {
"postcss": "^8.4.16"
}
}