-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "@web-printer/monorepo",
"type": "module",
"version": "0.4.0",
"license": "MIT",
"private": true,
"scripts": {
"build": "pnpm -r run build",
"test": "vitest",
"publish": "pnpm -r publish --access public --no-git-checks",
"lint:fix": "eslint . --fix --ext .ts",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write ."
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"**/src/**/*.{js,jsx,ts,tsx,json}": [
"prettier --write",
"eslint --cache --fix",
"git add"
]
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^11.1.1",
"lint-staged": "^13.2.1",
"playwright": "^1.32.3",
"prettier": "^2.8.7",
"simple-git-hooks": "^2.8.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
}
}