-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 1.19 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
{
"name": "github-action-branding",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"format": "prettier --write src/*.* *.ts",
"format-check": "prettier --check src/*.* *.ts",
"lint": "eslint src --ext .ts",
"lint:style": "stylelint src/style/*.less --syntax less",
"lint-fix": "yarn lint --fix",
"lint-fix:style": "yarn lint:style --fix",
"all": "yarn run build && yarn run format-check && yarn run lint && yarn run lint:style"
},
"dependencies": {
"@vitejs/plugin-vue-jsx": "^1.1.0",
"feather-icons": "^4.28.0",
"vue": "^3.0.5"
},
"devDependencies": {
"@typescript-eslint/parser": "^4.15.2",
"@umijs/fabric": "^2.5.6",
"@vitejs/plugin-vue": "^1.1.4",
"@vue/compiler-sfc": "^3.0.5",
"@vuedx/typecheck": "^0.7.4",
"@vuedx/typescript-plugin-vue": "^0.7.4",
"eslint": "^7.20.0",
"less": "^4.1.1",
"prettier": "^2.2.1",
"stylelint": "^13.11.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^21.0.0",
"stylelint-order": "^4.1.0",
"typescript": "^4.1.3",
"vite": "^2.0.0"
}
}