-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 2.52 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
{
"name": "teahub",
"version": "0.0.11",
"description": "Vue front end applications and components",
"type": "module",
"files": [
"dist"
],
"main": "./dist/teahub.umd.cjs",
"module": "./dist/teahub.es.js",
"exports": {
".": {
"import": "./dist/teahub.es.js",
"require": "./dist/teahub.umd.cjs"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint --ext .js,.vue .",
"lint:fix": "npm run lint -- --fix",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/vue-fontawesome": "^3.0.1",
"firebase": "^9.8.4-20220621210445",
"less": "^4.1.3",
"less-loader": "^7.2.1",
"luxon": "^2.4.0",
"vue": "^3.2.47",
"vue-cal": "^4.10.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/blocks": "^8.3.5",
"@storybook/test": "^8.3.5",
"@storybook/vue3": "^8.3.5",
"@storybook/vue3-vite": "^8.3.5",
"@testing-library/vue": "^7.0.0",
"@vitejs/plugin-vue": "^4.1.0",
"@vitest/coverage-c8": "^0.30.1",
"@vue/test-utils": "^2.3.2",
"eslint": "^8.19.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-storybook": "^0.9.0",
"eslint-plugin-vue": "^9.1.1",
"faker": "^6.6.6",
"jsdom": "^21.1.1",
"less": "^4.1.0",
"less-loader": "^7.2.1",
"storybook": "^8.3.5",
"vite": "^4.2.0",
"vitest": "^0.30.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/standard"
],
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Twoody/teahub.git"
},
"keywords": [
"vue",
"vue3",
"vitest",
"front-end",
"vue-cal",
"components",
"library"
],
"author": "Tanner Woody",
"license": "ISC",
"bugs": {
"url": "https://github.com/Twoody/teahub/issues"
},
"homepage": "https://github.com/Twoody/teahub#readme"
}