-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.76 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.76 KB
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
123
124
125
126
127
128
129
{
"name": "gene-ui",
"version": "1.0.0-alpha.2",
"files": [
"dist"
],
"exports": {
"./vue": {
"import": "./dist/vue/gene-ui.es.js",
"require": "./dist/vue/gene-ui.umd.js"
},
"./vue/style.css": "./dist/vue/style.css"
},
"scripts": {
"prepare": "husky install",
"dev": "vite",
"storybook": "start-storybook --ci --no-manager-cache -p 6006",
"storybook:docs": "start-storybook --ci --docs --no-manager-cache -p 6006",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:ci": "eslint --quiet .",
"build:library": "vue-tsc --noEmit && vite build",
"build:storybook": "build-storybook --docs --output-dir docs",
"type:ci": "vue-tsc --noEmit",
"test": "vite-jest",
"test:clear": "vite-jest --no-cache",
"test:watch": "vite-jest --no-cache --watchAll ",
"test:coverage": "vite-jest --no-cache --coverage",
"test:ci": "vite-jest --no-cache --ci",
"test:debug": "vite-jest --no-cache --detectOpenHandles",
"start": "vite preview --config vite.storybook.config.ts",
"release:ci": "semantic-release"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.2.0",
"@semantic-release/git": "^9.0.0",
"@storybook/addon-a11y": "^6.3.8",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-docs": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/testing-vue3": "^0.0.1",
"@storybook/vue3": "^6.3.12",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/line-clamp": "^0.2.2",
"@tailwindcss/typography": "^0.4.1",
"@testing-library/dom": "^8.3.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/user-event": "^13.1.9",
"@testing-library/vue": "^6.5.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.2",
"@vitejs/plugin-vue": "^1.4.0",
"@vue/compiler-sfc": "^3.0.5",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"autoprefixer": "^10.3.3",
"babel-loader": "^8.2.2",
"chromatic": "^5.10.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-mdx": "^1.15.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-tailwindcss": "^1.15.0",
"eslint-plugin-vue": "^7.18.0",
"husky": "^7.0.2",
"jest": "^27.2.2",
"jest-environment-jsdom": "^27.2.4",
"postcss": "^8.3.5",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.4.1",
"semantic-release": "^18.0.0",
"storybook-builder-vite": "^0.0.12",
"tailwindcss": "^2.2.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"vite": "^2.5.0",
"vite-jest": "^0.0.3",
"vue-loader": "^16.7.1",
"vue-tsc": "^0.3.0"
},
"dependencies": {
"vue": "^3.1.2"
},
"keywords": [
"ui library",
"vue 3",
"svelte",
"tailwindcss"
],
"author": {
"name": "Exo Des",
"email": "hello@exodes.net",
"url": "https://github.com/eXodes"
},
"homepage": "https://gene-ui.exodes.net/",
"repository": {
"type": "git",
"url": "git@github.com:eXodes/gene-ui.git"
},
"release": {
"branches": [
"master",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"license": "MIT"
}