-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
46 lines (46 loc) · 1.51 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
{
"name": "@noction/vue-draggable-grid-monorepo",
"version": "1.11.0",
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": "^8"
},
"scripts": {
"lint": "pnpm -P -r \"/^lint:.*/\"",
"lint:es": "eslint .",
"lint:es:fix": "eslint . --fix",
"lint:style": "stylelint **/*.{css,scss,vue}",
"lint:style:fix": "stylelint **/*.{css,scss,vue} --fix",
"typecheck": "pnpm -P -r typecheck",
"build": "pnpm -P -r build",
"build:lib": "pnpm -F vue-draggable-grid build",
"test": "pnpm -F @noction/vue-draggable-grid test",
"test:coverage": "pnpm -F @noction/vue-draggable-grid test:coverage",
"prepare": "simple-git-hooks",
"release": "pnpm run lint && bumpp package.json packages/playground/package.json packages/vue-draggable-grid/package.json --commit --push --tag"
},
"devDependencies": {
"@antfu/eslint-config": "^2.13.0",
"bumpp": "^9.3.0",
"eslint": "^9.0.0",
"eslint-plugin-perfectionist": "^2.8.0",
"lint-staged": "^15.2.2",
"sass": "^1.69.7",
"simple-git-hooks": "^2.9.0",
"stylelint": "^16.1.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-recess-order": "^4.4.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^13.0.0",
"typescript": "^5.3.3",
"vue-tsc": "^1.8.27"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"**/*.{js,ts,d.ts,vue}": "eslint --fix",
"**/*.{css,scss,vue}": "stylelint --fix"
}
}