-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
114 lines (114 loc) · 4.11 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
{
"name": "@infermedica/component-library",
"version": "1.11.2",
"description": "Vue 3 UI library for healthcare and not only.",
"license": "MIT",
"sideEffects": [
"*.vue"
],
"main": "index.ts",
"module": "index.ts",
"scripts": {
"build": "vite build --out-dir dist",
"build-storybook": "storybook build",
"check:components-api": "node --experimental-fetch scripts/check-components-api.mjs",
"check:types": "vue-tsc --noEmit",
"chromatic": "chromatic --exit-zero-on-changes",
"create:component": "node scripts/create-component.mjs",
"create:icons-list": "node scripts/create-icons-list.mjs",
"create:index": "node scripts/create-index.mjs",
"create:release-notes": "node --experimental-fetch scripts/create-release-notes.mjs",
"husky": "husky install && chmod ug+x .husky/*",
"lint": "eslint --fix --ext .js,.vue,.ts src",
"preview": "vite preview --open --port 8080",
"prerelease": "pnpm run create:index && pnpm run create:icons-list && pnpm run test:generate-output",
"release": "node --experimental-fetch scripts/release.mjs",
"serve": "vite --open",
"storybook": "storybook dev -p 6006",
"stylelint": "stylelint src/**/*.{vue,scss,css} --fix",
"test:generate-output": "vitest --outputFile=.unit-test-results.json --run || true",
"test:unit": "vitest --run",
"test:watch": "vitest -w --changed",
"update:components-api": "node scripts/update-components-api.mjs",
"update:css-variables": "node --experimental-fetch scripts/figma-to-css.mjs",
"update:docs": "node scripts/update-components-docs.mjs && pnpm lint"
},
"dependencies": {
"country-codes-list": "^1.6.11",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"fast-equals": "^5.0.1",
"google-libphonenumber": "^3.2.33",
"sass": "^1.32.7",
"uid": "^2.0.2",
"vite-svg-loader": "^4.0.0",
"vue": "^3.3.4"
},
"devDependencies": {
"@chromatic-com/storybook": "^1",
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@storybook/addon-a11y": "^8.1.3",
"@storybook/addon-actions": "^8.1.3",
"@storybook/addon-backgrounds": "^8.1.3",
"@storybook/addon-essentials": "^8.1.3",
"@storybook/addon-links": "^8.1.3",
"@storybook/addon-mdx-gfm": "^8.1.3",
"@storybook/api": "^7.6.17",
"@storybook/blocks": "^8.1.3",
"@storybook/components": "^8.1.3",
"@storybook/design-system": "^7.15.17",
"@storybook/global": "^5.0.0",
"@storybook/preview-api": "^8.1.3",
"@storybook/theming": "^8.1.3",
"@storybook/vue3": "^8.1.3",
"@storybook/vue3-vite": "^8.1.3",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-airbnb": "^7.0.1",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.1",
"autoprefixer": "^10.4.2",
"chromatic": "^6.5.4",
"deepmerge": "^4.3.1",
"dotenv": "^16.0.3",
"eslint": "^8.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-import-newlines": "^1.2.3",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vitest-globals": "^1.1.0",
"eslint-plugin-vue": "^9.2.0",
"eslint-plugin-vuejs-accessibility": "^2.2.0",
"file-save": "^0.2.0",
"glob": "^10.3.10",
"husky": "^8.0.1",
"jsdom": "^23.2.0",
"postcss": "^8.4.7",
"prompts": "^2.4.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-string-replace": "^1.1.0",
"react-syntax-highlighter": "^15.5.0",
"storybook": "^8.1.3",
"stylelint": "^15.11.0",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-recommended-scss": "^13.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^34.0.0",
"tailwindcss": "^3.3.3",
"typescript": "~5.2.2",
"uppercamelcase": "^3.0.0",
"vite": "^4.4.5",
"vite-plugin-vue-devtools": "^7.0.27",
"vitest": "^0.34.1",
"vue-docgen-api": "^4.75.0",
"vue-loader": "^17.0.0",
"vue-tsc": "^2.0.19"
},
"engines": {
"node": ">=16.13.2",
"pnpm": ">=6.32"
}
}