forked from logaretm/vee-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.41 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
{
"name": "vee-validate-monorepo",
"private": true,
"packageManager": "pnpm@8.5.0",
"description": "Form Validation for Vue.js",
"author": "Abdelrahman Awad <logaretm1@gmail.com>",
"license": "MIT",
"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.1",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.1.1",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vitest/coverage-c8": "^0.31.0",
"@vue/devtools-api": "^6.5.0",
"chalk": "^5.2.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"filesize": "^10.0.7",
"flush-promises": "^1.0.2",
"fs-extra": "^11.1.1",
"gzip-size": "^7.0.0",
"husky": "^8.0.3",
"jsdom": "^22.0.0",
"klona": "^2.0.6",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.8.1",
"raf-stub": "^3.0.0",
"rollup": "^3.21.7",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"terser": "^5.17.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"type-fest": "^3.10.0",
"typescript": "5.0.4",
"vitest": "^0.31.0",
"vue": "^3.3.2",
"yup": "^1.1.1"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"vitest run related --passWithNoTests"
],
"*.js": [
"eslint --fix",
"vitest run related"
]
}
}