-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
166 lines (166 loc) · 6.34 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
{
"name": "@vivid/root",
"private": true,
"description": "Web Components based on branded design system by Vonage",
"author": "Vonage",
"license": "ISC",
"workspaces": [
"common/*",
"components/*"
],
"scripts": {
"dep-check": "lerna exec --stream --no-bail depcheck",
"changelog": "yarn lerna exec --concurrency 1 --stream 'conventional-changelog --preset angular --release-count 0 --commit-path $PWD --pkg $PWD/package.json --outfile $PWD/CHANGELOG.md --verbose'",
"lint:stylelint": "stylelint \"{common,components}/**/*.scss\" --quiet",
"lint:eslint": "eslint \"{common,components}/*/{src,test,stories}/**/*.{js,ts}\" --no-error-on-unmatched-pattern --quiet",
"lint": "yarn lint:stylelint && yarn lint:eslint",
"format:stylelint": "yarn lint:stylelint --fix",
"format:eslint": "yarn lint:eslint --fix",
"format": "yarn format:stylelint && yarn format:eslint",
"tsc:watch": "tsc --build --watch",
"test:prepublish": "karma start --coverage --browsers=ChromeHeadless,FirefoxHeadless",
"test:chrome": "karma start --coverage --browsers=ChromeHeadless",
"test:firefox": "karma start --coverage --browsers=FirefoxHeadless",
"test:safari": "karma start --coverage --browsers=SafariNative",
"test:safari-local": "karma start --coverage --browsers=SafariNative --autoWatch=true --singleRun=false",
"test:dev": "yarn compile && concurrently -r \"yarn watch\" \"karma start karma.conf.spec.js\"",
"test:dev-no-build": "karma start karma.conf.spec.js",
"test:dev:ci": "yarn compile && concurrently -r \"yarn watch\" \"RUN=CI karma start karma.conf.spec.js\"",
"test:update-snapshots": "karma start --update-snapshots --browsers=ChromeHeadless",
"test:prune-snapshots": "karma start --prune-snapshots",
"test:bs": "karma start --coverage",
"git:sync": "git submodule sync && git submodule update --init --recursive --remote",
"postinstall": "husky install && yarn link",
"link": "lerna link",
"storybook:vivid:pre": "yarn compile && yarn wca:json && node ./.storybook/build-scripts/build-pre.mjs",
"storybook:vivid:post": "node ./.storybook/build-scripts/build-post.mjs",
"storybook:build": "yarn storybook:vivid:pre && build-storybook -c .storybook -o .out -s ./.storybook/static && yarn storybook:vivid:post",
"storybook": "start-storybook -s ./.storybook/static -p 9000",
"start": "yarn storybook:vivid:pre && start-storybook -s ./.storybook/static -p 9000",
"build:design-tokens": "lerna run build --scope @vonage/vvd-design-tokens",
"compile": "lerna run build --stream",
"compile:styles": "lerna run build:styles --stream",
"compile:typescript": "lerna run build:typescript",
"clean:git": "git clean -e .npmrc -dfx",
"clean": "yarn clean:git",
"watch": "monowatch",
"wca:json": "wca analyze components/*/src/*.?s --outFile custom-elements.json",
"wca:compile:json": "yarn compile && yarn wca:custom-elements",
"docs:spell-check": "spech docs/*.md",
"build-ui-tests": "NODE_OPTIONS=--openssl-legacy-provider webpack -c ./ui-tests/webpack.config.js",
"run-ui-tests": "ts-node --project ./ui-tests/tsconfig.json ./ui-tests/index.ts",
"ui-tests": "yarn build-ui-tests && yarn run-ui-tests"
},
"devDependencies": {
"@open-wc/karma-esm": "^4.0.0",
"@open-wc/lit-helpers": "^0.3.12",
"@open-wc/semantic-dom-diff": "^0.19.4",
"@open-wc/testing-helpers": "^1.8.12",
"@open-wc/testing-karma": "^4.0.9",
"@storybook/addon-a11y": "^6.3.10",
"@storybook/addon-actions": "^6.3.10",
"@storybook/addon-console": "^1.2.3",
"@storybook/addon-controls": "^6.3.10",
"@storybook/addon-docs": "^6.3.10",
"@storybook/addon-viewport": "^6.3.10",
"@storybook/addons": "^6.3.10",
"@storybook/theming": "^6.3.10",
"@storybook/web-components": "^6.3.10",
"@types/serve-handler": "^6.1.1",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"@vonage/monowatch": "^0.0.7",
"@whitespace/storybook-addon-html": "^5.0.0",
"api-viewer-element": "^0.5.0",
"chai": "^4.3.4",
"chai-a11y-axe": "^1.3.1",
"chai-dom": "^1.10.0",
"chai-karma-snapshot": "^0.8.0",
"chai-spies": "^1.0.0",
"change-case": "^4.1.2",
"chokidar": "^3.5.2",
"clean-webpack-plugin": "^4.0.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"concurrently": "^5.2.0",
"conventional-changelog-cli": "^2.1.0",
"copy-webpack-plugin": "^9.0.1",
"deepmerge": "^4.2.2",
"depcheck": "^1.4.2",
"element-f": "^2.0.0",
"es-dev-server": "^1.50.8",
"eslint": "^8.0.1",
"eslint-plugin-compat": "^3.13.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-lit": "^1.6.1",
"eslint-plugin-lit-a11y": "^2.0.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-wc": "^1.3.2",
"fibers": "^5.0.0",
"glob": "^7.2.0",
"got": "^11.8.1",
"highlight.js": "^10.4.0",
"husky": "^7.0.2",
"immer": "^9.0.6",
"ini": "^1.3.6",
"jimp": "^0.16.1",
"karma": "^5.2.3",
"karma-browserstack-launcher": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-file-fixtures-preprocessor": "^3.0.1",
"karma-firefox-launcher": "^2.1.0",
"karma-html": "^1.0.5",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-safarinative-launcher": "^1.1.0",
"kefir": "^3.8.7",
"lerna": "^4.0.0",
"lint-staged": "^11.2.0",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"mocha": "^8.1.3",
"playwright": "1.32.3",
"prism": "^4.1.2",
"remove-dir-safe": "^2.0.0",
"semver-compare": "^1.0.0",
"semver-diff": "^3.1.1",
"serve": "^11.3.2",
"showdown": "^1.9.1",
"showdown-htmlescape": "^0.1.9",
"spech": "^0.2.1",
"standard-version": "^9.1.0",
"stylelint": "^13.13.1",
"stylelint-a11y": "^1.2.3",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-no-unsupported-browser-features": "^5.0.2",
"tar-stream": "^2.1.4",
"ts-lit-plugin": "^1.2.1",
"ts-loader": "^9.1.2",
"ts-node": "^9.1.1",
"tslib": "^2.3.0",
"typescript": "^4.3.2",
"uuid": "^8.3.2",
"web-component-analyzer": "^1.1.6",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.0.0",
"xmlhttprequest-ssl": "^1.6.2"
},
"engines": {
"node": ">=12.18.4"
},
"vaadin": {
"disableUsageStatistics": true
},
"_void_cache": true,
"resolutions": {
"**/glob-parent": "^6.0.2",
"**/minimist": "^1.2.6"
},
"dependencies": {
"minimatch": "3.1.2"
}
}