forked from helmuthdu/automated-frontend-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.55 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
{
"name": "@github-actions/root",
"version": "1.0.0",
"description": "Useful Github actions for Front-end Development",
"main": "index.js",
"scripts": {
"lint": "npm run lint -ws",
"lint:report": "eslint --ext .jsx,.js,.ts,.tsx,.vue --fix --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif packages/**/src",
"test": "npm test -ws",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook -o docs/public/storybook",
"changeset-create": "changeset",
"changeset-apply": "changeset version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helmuthdu/github-actions.git"
},
"keywords": [
"github-actions"
],
"author": "Helmuth Saatkamp <helmuthdu@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/helmuthdu/github-actions/issues"
},
"homepage": "https://github.com/helmuthdu/github-actions#readme",
"devDependencies": {
"@babel/core": "^7.20.12",
"@changesets/cli": "^2.26.0",
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-interactions": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/builder-vite": "^0.2.7",
"@storybook/mdx2-csf": "^0.0.3",
"@storybook/testing-library": "^0.0.13",
"@storybook/vue3": "^6.5.15",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.2.7",
"babel-loader": "^9.1.2",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.8",
"eslint-plugin-vue": "^9.8.0",
"git-conventional-commits": "^2.4.0",
"jsdom": "^21.0.0",
"lefthook": "^1.2.6",
"postcss": "^8.4.21",
"postcss-html": "^1.5.0",
"prettier": "^2.8.2",
"sass": "^1.57.1",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard-scss": "^6.1.0",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vitepress": "^1.0.0-alpha.35",
"vitest": "^0.26.3",
"vue": "^3.2.45",
"vue-eslint-parser": "^9.1.0",
"vue-loader": "^17.0.1",
"vue-tsc": "^1.0.24"
},
"workspaces": [
"packages/*"
]
}