-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
114 lines (114 loc) · 3.19 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": "@lob/ui-components",
"version": "2.0.80",
"engines": {
"node": ">=20.2.0",
"npm": ">=10.2.0"
},
"files": [
"dist"
],
"main": "./dist/ui-components.umd.js",
"module": "./dist/ui-components.es.js",
"exports": {
".": {
"import": "./dist/ui-components.es.js",
"require": "./dist/ui-components.umd.js"
},
"./dist/ui-components.css": "./dist/style.css"
},
"types": "./dist/src/main.d.ts",
"scripts": {
"build": "vite build",
"build-storybook": "storybook build",
"format-check": "npm run pretty-check && npm run lint",
"format-fix": "npm run pretty-fix && npm run lint-fix",
"lint:css": "prettier-stylelint 'src/**/*.vue'",
"lint:js": "eslint --ext .js,.vue .",
"lint": "npm run lint:js && npm run lint:css",
"lint-fix": "npm run lint --- --fix",
"pretty-check": "prettier -c .",
"pretty-fix": "prettier -w .",
"test": "vitest",
"test:watch": "vitest watch",
"test:ci": "npm run coverage",
"coverage": "vitest run --coverage",
"storybook": "storybook dev -p 6006",
"type-check": "vue-tsc --noEmit"
},
"dependencies": {
"date-fns": "^2.29.3",
"date-fns-holiday-us": "^0.3.1",
"mitt": "^3.0.0",
"primeicons": "^6.0.1",
"primevue": "^3.43.0",
"vite-svg-loader": "^5.1.0",
"vue": "3.4",
"vue-router": "^4.0.8"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@storybook/addon-a11y": "^7.6.12",
"@storybook/addon-actions": "^7.6.12",
"@storybook/addon-docs": "^7.6.12",
"@storybook/addon-essentials": "^7.6.12",
"@storybook/addon-links": "^7.6.12",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/vue3": "^7.6.12",
"@storybook/vue3-vite": "^7.6.12",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/user-event": "^14.0.4",
"@testing-library/vue": "^6.5.1",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-vue": "^3.1.0",
"@vitest/coverage-c8": "^0.23.4",
"@vue/test-utils": "^2.0.0-rc.19",
"autoprefixer": "^10.4.5",
"babel-loader": "^8.2.2",
"eslint": "^8.11.0",
"eslint-config-lob": "^5.2.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-lob": "^1.2.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.24.0",
"jsdom": "^19.0.0",
"postcss": "^8.4.12",
"prettier": "^3.0.0",
"prettier-eslint": "^15.0.1",
"prettier-stylelint": "^0.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.34.1",
"sass-loader": "^10.1.1",
"storybook": "^7.6.12",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"tailwind-plugin-lob": "^1.0.9",
"tailwindcss": "^3.0.24",
"typescript": "^5.1.6",
"vite": "^3.1.4",
"vite-plugin-dts": "^3.7.3",
"vitest": "^0.23.4",
"vue-eslint-parser": "^9.4.2",
"vue-loader": "^16.2.0",
"vue-style-loader": "^4.1.3",
"vue-tsc": "^2.0.13"
},
"peerDependencies": {
"vue-i18n": "^9.0.0"
},
"overrides": {
"eslint-config-lob": {
"eslint": "^8.11.0"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"repository": {
"type": "git",
"url": "https://github.com/lob/ui-components"
}
}