-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.6 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
{
"name": "vue-material-3",
"version": "0.7.0",
"description": "Material Design 3 styled components for Vue 3",
"main": "src/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "gh-pages -d storybook-static",
"semantic-release": "semantic-release"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"master",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"repository": {
"type": "git",
"url": "https://github.com/mylmz10/vue-material-3.git"
},
"author": "[email protected]",
"license": "MIT",
"keywords": [
"vue",
"material",
"material design 3",
"material you",
"web",
"components"
],
"bugs": {
"url": "https://github.com/mylmz10/vue-material-3/issues"
},
"homepage": "https://mylmz10.github.io/vue-material-3",
"dependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"dayjs": "1.11.7"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@rushstack/eslint-patch": "^1.1.0",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/preset-scss": "^1.0.3",
"@storybook/vue3": "^6.4.22",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/eslint-config-prettier": "^7.0.0",
"babel-loader": "^8.2.4",
"css-loader": "^5.2.7",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.5.0",
"eslint-plugin-storybook": "^0.6.11",
"eslint-plugin-vue": "^8.2.0",
"gh-pages": "^3.2.3",
"prettier": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"sass": "^1.50.0",
"sass-loader": "^10.2.1",
"semantic-release": "^20.1.1",
"style-loader": "^2.0.0"
},
"prettier": {
"printWidth": 200,
"singleQuote": true
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}