-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
31 lines (31 loc) · 964 Bytes
/
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
{
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"husky": "^9.1.7"
},
"scripts": {
"prepare": "husky",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "npm run build && jest --detectOpenHandles --silent",
"test:watch": "npm run build && jest --silent -w",
"test:coverage": "npm run build && jest --silent --coverage",
"clean": "npm run clean --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"tsc": "npm run tsc --workspaces --if-present",
"publish": "node publish.js",
"workspaces:lint": "npm run lint --workspaces --if-present",
"workspaces:test": "npm run test --workspaces --if-present",
"renovate:validate": "npx --yes --package renovate -- renovate-config-validator"
},
"overrides": {
"@types/pouchdb-core": "npm:@stanlemon/types-pouchdb-core@^0.0.3"
}
}