-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.33 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
{
"name": "@dom-assertions/monorepo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": "Mohammad Ataei <mammadataei@gmail.com>",
"scripts": {
"dom-assertions": "pnpm --filter dom-assertions",
"chai-dom": "pnpm --filter chai-dom",
"cypress-dom": "pnpm --filter cypress-dom",
"jest-dom": "pnpm --filter jest-dom",
"build": "pnpm -r build",
"test": "pnpm -r --workspace-concurrency 1 test:run",
"test:coverage": "pnpm -r test:coverage",
"format": "prettier --write .",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@testing-library/dom": "^8.17.1",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@vitest/ui": "^0.32.0",
"c8": "^7.12.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"prettier": "2.8.8",
"typescript": "^4.8.3",
"unbuild": "^1.0.0",
"vite": "^4.0.0",
"vitest": "^0.32.0"
}
}