-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
46 lines (46 loc) · 1.3 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
{
"private": true,
"workspaces": [
"package",
"docs"
],
"scripts": {
"build": "yarn workspace oh-vue-icons run build",
"build:demo": "yarn workspace oh-vue-icons build:demo",
"build:docs": "yarn workspace docs run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"dev": "yarn workspace oh-vue-icons run dev",
"docs": "yarn workspace docs run dev",
"download": "bash ./scripts/download.sh",
"icons": "node scripts/build.js",
"lint": "eslint --ext .js,.ts,.tsx,.vue ./",
"prepare": "husky install",
"release": "bash ./scripts/release.sh"
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"eslint --fix --ext .js,.ts,.tsx,.vue ./"
],
"package.json": [
"sort-package-json"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"camelcase": "^6.3.0",
"cheerio": "^1.0.0-rc.10",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.7.1",
"glob-promise": "^4.2.2",
"husky": "^7.0.4",
"lint-staged": "^12.4.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"sort-package-json": "^1.55.0",
"svgo": "^1.3.2",
"typescript": "^4.6.3"
}
}