forked from logaretm/vee-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.46 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
82
{
"name": "vee-validate-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"description": "Form Validation for Vue.js",
"author": "Abdelrahman Awad <[email protected]>",
"license": "MIT",
"homepage": "https://vee-validate.logaretm.com",
"repository": "https://github.com/logaretm/vee-validate",
"scripts": {
"test": "jest",
"test:ci": "jest --ci --detectOpenHandles --runInBand",
"lint": "eslint . '**/*.{js,jsx,ts,tsx}' --fix",
"format": "prettier \"./**/*.ts\" --write",
"build": "node scripts/build.js",
"cover": "jest --coverage",
"cover:ci": "jest --coverage --ci --runInBand --detectOpenHandles",
"postversion": "npm run build",
"docs:dev": "cd ./docs && npm run dev && cd -",
"postinstall": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@rollup/plugin-replace": "^3.0.0",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vue/devtools-api": "^6.0.0-beta.15",
"chalk": "^4.1.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^25.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"fast-deep-equal": "^3.1.3",
"filesize": "^8.0.0",
"flush-promises": "^1.0.2",
"fs-extra": "^10.0.0",
"gzip-size": "^6.0.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"klona": "^2.0.4",
"lerna": "^4.0.0",
"lint-staged": "^12.0.2",
"prettier": "^2.3.2",
"raf-stub": "^3.0.0",
"rollup": "^2.43.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "0.31.1",
"terser": "^5.6.0",
"ts-jest": "^27.0.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "4.4.4",
"vue": "^3.2.0-beta.1",
"yup": "^0.32.9"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"jest --maxWorkers=1 --bail --findRelatedTests"
],
"*.js": [
"eslint --fix",
"jest --maxWorkers=1 --bail --findRelatedTests"
]
}
}