-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
100 lines (100 loc) · 4.58 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
{
"name": "@astrouxds/astro-web-components",
"version": "7.20.0",
"description": "Astro Web Components",
"homepage": "https://astro-components.netlify.app/?path=/story/astro-uxds-welcome-start-here--page",
"repository": {
"type": "git",
"url": "https://github.com/RocketCommunicationsInc/astro"
},
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/astro-web-components/astro-web-components.esm.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build.stencil": "PROD=true stencil build --docs",
"build.storybook": "build-storybook",
"build": "npm run build.stencil",
"icons.fetch": "export-icons",
"icons.generate": "node src/utils/generate-icons.js",
"lint.js": "eslint src/**/*{.ts,.tsx}",
"lint.css": "stylelint \"src/components/**/*.scss\" --fix",
"prettier": "prettier --write --loglevel warn .",
"start": "stencil build --dev --watch --serve",
"start.stencil": "stencil build --dev --watch --serve",
"start.watch": "stencil build --watch --serve -p 3333",
"start.prod": "PROD=true stencil build --watch --serve",
"start.storybook": "start-storybook -p 6006",
"test": "docker run -i --rm --ipc=host -v \"${PWD}:/var/app/\" mcr.microsoft.com/playwright:v1.33.0-focal /bin/bash -c 'cd /var/app; npx playwright install; npx playwright test'",
"test.server": "serve -p 3334",
"test.e2e": "npx playwright test --project=chromium-e2e",
"test.e2e.ui": "npx playwright test --project=chromium-e2e --ui",
"test.e2e.ci": "docker run -i --rm --ipc=host -v \"${PWD}:/var/app/\" mcr.microsoft.com/playwright:v1.33.0-focal /bin/bash -c 'cd /var/app; npx playwright install; npx playwright test --project=chromium-e2e'",
"test.vrt": "docker run -i --rm --ipc=host -v \"${PWD}:/var/app/\" mcr.microsoft.com/playwright:v1.33.0-focal /bin/bash -c 'cd /var/app; npx playwright install; npx playwright test --project=chromium-vrt-dark --project=chromium-vrt-light'",
"test.vrt.dark": "docker run -i --rm --ipc=host -v \"${PWD}:/var/app/\" mcr.microsoft.com/playwright:v1.33.0-focal /bin/bash -c 'cd /var/app; npx playwright install; npx playwright test --project=chromium-vrt-dark'",
"test.vrt.update": "docker run -i --rm --ipc=host -v \"${PWD}:/var/app/\" mcr.microsoft.com/playwright:v1.33.0-focal /bin/bash -c 'cd /var/app; npx playwright install; npx playwright test --project=chromium-vrt-dark --project=chromium-vrt-light --update-snapshots'",
"test.wk": "npx playwright test --project=webkit --grep-invert @vrt",
"test.cr": "npx playwright test --project=chromium --grep-invert @vrt",
"test.ff": "npx playwright test --project=firefox --grep-invert @vrt"
},
"dependencies": {
"@floating-ui/dom": "~1.0.6",
"@stencil/core": "~3.4.1",
"date-fns": "~2.21.3",
"date-fns-tz": "~1.3.7",
"imask": "~7.3.0"
},
"license": "MIT",
"devDependencies": {
"@astrouxds/astro-figma-export": "~1.0.1",
"@astrouxds/postcss-custom-property-token-fallback": "~0.0.2",
"@astrouxds/stencil-playwright": "~0.0.1",
"@astrouxds/storybook-addon-docs-stencil": "~1.0.10",
"@astrouxds/tokens": "~1.12.0",
"@babel/core": "~7.13.16",
"@playwright/test": "~1.33.0",
"@stencil/angular-output-target": "~0.7.1",
"@stencil/eslint-plugin": "~0.4.0",
"@stencil/postcss": "~2.1.0",
"@stencil/react-output-target": "~0.5.3",
"@stencil/sass": "~1.4.1",
"@storybook/addon-a11y": "~6.4.22",
"@storybook/addon-actions": "~6.4.22",
"@storybook/addon-docs": "~6.4.22",
"@storybook/addon-essentials": "~6.4.22",
"@storybook/addon-links": "~6.4.22",
"@storybook/addons": "~6.4.22",
"@storybook/theming": "~6.4.22",
"@storybook/web-components": "~6.4.22",
"@types/jest": "~26.0.24",
"@typescript-eslint/eslint-plugin": "~4.22.1",
"@typescript-eslint/parser": "~4.22.1",
"babel-loader": "~8.2.5",
"eslint": "~7.25.0",
"eslint-config-google": "~0.14.0",
"eslint-plugin-react": "~7.23.2",
"jest": "~26.6.3",
"jest-cli": "~26.6.3",
"lit": "~2.0.2",
"netlify-cli": "~15.1.1",
"playwright": "~1.33.0",
"postcss": "~8.4.23",
"prettier": "~2.2.1",
"pretty-quick": "~3.1.3",
"puppeteer": "~20.7.3",
"serve": "~14.1.1",
"storybook-addon-themes": "~6.1.0",
"stylelint": "~14.9.1",
"stylelint-config-prettier": "~9.0.4",
"stylelint-config-standard": "~26.0.0",
"svgo": "~2.3.1"
}
}