forked from logaretm/vee-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.45 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
78
79
80
81
{
"name": "vee-validate-monorepo",
"private": true,
"description": "Form Validation for Vue.js",
"author": "Abdelrahman Awad <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"homepage": "https://vee-validate.logaretm.com",
"repository": "https://github.com/logaretm/vee-validate",
"scripts": {
"test": "vitest",
"lint": "eslint . '**/*.{js,jsx,ts,tsx}' --fix",
"format": "prettier \"./**/*.ts\" --write",
"build": "node scripts/build.mjs",
"cover": "vitest run --coverage",
"postversion": "pnpm build",
"typecheck": "pnpm tsc --noEmit --project ./tsconfig.json --skipLibCheck",
"docs:dev": "cd ./docs && pnpm dev && cd -",
"postinstall": "husky install",
"release": "./scripts/release.sh"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.1.3",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@vitest/coverage-v8": "^0.34.4",
"@vue/devtools-api": "^6.5.0",
"chalk": "^5.3.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"filesize": "^10.0.12",
"flush-promises": "^1.0.2",
"fs-extra": "^11.1.1",
"gzip-size": "^7.0.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"klona": "^2.0.6",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"raf-stub": "^3.0.0",
"rollup": "^3.29.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"terser": "^5.19.4",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"type-fest": "^4.3.1",
"typescript": "5.2.2",
"vitest": "^0.34.4",
"vue": "^3.3.0",
"yup": "^1.2.0"
},
"peerDependencies": {
"vue": "^3.3.4"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"vitest run related --passWithNoTests"
],
"*.js": [
"eslint --fix",
"vitest run related --passWithNoTests"
]
}
}