-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 899 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 899 Bytes
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
{
"name": "@go-tribe/ui-kit",
"version": "0.0.1",
"description": "UI Kit for Go Tribe",
"workspaces": [
"packages/*"
],
"main": "index.js",
"scripts": {
"dev:vue": "pnpm --filter @go-tribe/ui dev",
"build:vue": "pnpm --filter @go-tribe/ui build",
"prepare": "husky install",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx,.vue --fix"
},
"keywords": [],
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.11.0",
"devDependencies": {
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.22.0",
"prettier": "^3.2.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --fix"
]
}
}