-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
121 lines (121 loc) · 3.43 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
{
"name": "@solfacil/components-ui",
"version": "1.93.0",
"private": false,
"description": "Component library based on Vue and Tailwind",
"author": "Solfacil - Fernando Jesus",
"engines": {
"node": "^14"
},
"scripts": {
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build-storybook": "build-storybook -s public",
"format": "prettier --write \"**/*.+(js|vue|jsx|json|scss|css|md)\"",
"generate": "yarn plop --plopfile ./generators/plopfile.js",
"precommit": "./.husky/run-staged-tests.js",
"prepare": "husky install && vue-cli-service build --target lib --name solfacil ./src/index.js",
"proxy": "ngrok http 6006",
"start": "vue-cli-service serve",
"storybook": "start-storybook -p 6006 -s public --ci",
"test": "vue-cli-service test:unit",
"test:coverage": "vue-cli-service test:unit --coverage",
"test:watch": "vue-cli-service test:unit --watch"
},
"main": "./dist/solfacil.common.js",
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"setupFiles": [
"<rootDir>/.jest/register-context.js"
],
"dependencies": {
"chart.js": "2.9.4",
"core-js": "3.21.0",
"html2canvas": "^1.4.1",
"install": "^0.13.0",
"lodash": "^4.17.21",
"tailwindcss": "^1.9.6",
"v-mask": "^2.3.0",
"vue": "^2.6.14",
"vue-chartjs": "^3.5.1",
"vue-slider-component": "^3.2.15",
"vue2-datepicker": "3.10.4"
},
"devDependencies": {
"@babel/core": "7.17.2",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/preset-env": "7.16.11",
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@storybook/addon-actions": "6.4.19",
"@storybook/addon-essentials": "6.4.19",
"@storybook/addon-links": "6.4.19",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/vue": "6.4.19",
"@vue/cli-plugin-babel": "~4.5.15",
"@vue/cli-plugin-eslint": "~4.5.15",
"@vue/cli-plugin-router": "~4.5.15",
"@vue/cli-plugin-unit-jest": "~4.5.15",
"@vue/cli-plugin-vuex": "~4.5.15",
"@vue/cli-service": "~4.5.15",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.3.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"babel-plugin-require-context-hook": "^1.0.0",
"cli-spinner": "^0.2.10",
"cowsay": "^1.5.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-prettier-vue": "^3.1.0",
"eslint-plugin-storybook": "0.5.6",
"eslint-plugin-vue": "^7.17.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"lint-staged": "12.3.4",
"ngrok": "^4.3.0",
"node-sass": "4.14.1",
"plop": "3.0.5",
"prettier": "2.5.1",
"resolve-url-loader": "^4.0.0",
"sass-loader": "^8.0.2",
"svg-url-loader": "^7.1.1",
"url-loader": "^4.1.1",
"vue-cli-plugin-webpack-bundle-analyzer": "~4.0.0",
"vue-jest": "^3.0.7",
"vue-loader": "^15.9.8",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.14"
},
"homepage": "http://solfacil.github.io/components-ui",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
},
"keywords": [
"ui",
"vue",
"css",
"vue2",
"sass",
"mobile",
"frontend",
"component",
"components",
"tailwind",
"javascript",
"storybook"
],
"license": "MIT"
}