-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
122 lines (122 loc) · 3.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
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@storyblok/design-system",
"version": "3.9.0",
"main": "dist/storyblok-design-system.js",
"module": "dist/storyblok-design-system.mjs",
"umd": "dist/storyblok-design-system.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/storyblok/storyblok-design-system.git"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"dev": "yarn storybook",
"build": "vite build",
"test:unit": "vitest run --config ./vitest.config.ts",
"lint": "eslint src src/ tests/ .storybook/",
"lint:style": "stylelint 'src/**/*.{vue,scss}' --config ./.stylelintrc.json --fix",
"build-storybook": "storybook build",
"storybook": "storybook dev -p 6006 --ci",
"prepare": "is-ci || husky install",
"pre-commit": "lint-staged"
},
"types": "dist/src/main.d.ts",
"files": [
"dist",
"src"
],
"dependencies": {
"@popperjs/core": "^2.11.8",
"@vueuse/core": "^10.7.2",
"click-outside-vue3": "^4.0.1",
"dayjs": "^1.11.10",
"dompurify": "^3.0.6",
"lucide-vue-next": "^0.279.0",
"maska": "^1.5.2",
"primevue": "^3.43.0",
"throttle-debounce": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-proposal-decorators": "^7.22.15",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@ronilaukkarinen/stylelint-a11y": "^1.2.7",
"@storybook/addon-a11y": "^7.6.10",
"@storybook/addon-essentials": "^7.6.10",
"@storybook/addon-storysource": "^7.6.10",
"@storybook/addon-viewport": "^7.6.10",
"@storybook/addons": "^7.6.10",
"@storybook/theming": "^7.6.10",
"@storybook/vue3": "^7.6.10",
"@storybook/vue3-vite": "^7.6.10",
"@testing-library/vue": "^7.0.0",
"@types/jsdom": "^21.1.6",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.4",
"@vue/tsconfig": "^0.5.1",
"@vue/vue3-jest": "^29.2.6",
"babel-jest": "^29.7.0",
"babel-preset-vue": "^2.0.2",
"chromatic": "^6.18.2",
"colord": "^2.9.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-vitest": "^0.3.22",
"eslint-plugin-vue": "^9.21.1",
"eslint-plugin-vuejs-accessibility": "^2.2.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest-transform-stub": "^2.0.0",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.3",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.67.0",
"sass-mq": "^6.0.0",
"storybook": "^7.6.10",
"stylelint": "^15.10.3",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-order": "^6.0.3",
"typescript": "^5.2.2",
"vite": "^5.1.3",
"vite-plugin-dts": "^3.7.2",
"vite-svg-loader": "^5.1.0",
"vitest": "^1.3.0",
"vue": "^3.4.19",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^1.8.27"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"eslint --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx --fix --ignore-path .gitignore"
],
"*.{vue,scss,css}": [
"stylelint --config .stylelintrc.json --fix"
]
},
"release": {
"branches": [
"main"
]
}
}