-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.38 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
{
"name": "hikers-book",
"version": "0.16.0",
"description": "Hiker's book",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"build": "pnpm --stream --recursive run build",
"clean": "rm -rf .parcel-cache && pnpm --recursive run clean",
"config": "pnpm --filter '@hikers-book/config' run config && pnpm --filter '@hikers-book/hikers-book-ui' run config && pnpm --filter=!'@hikers-book/config' run config:api",
"config:clear": "pnpm --stream --recursive run config:clear",
"lint": "pnpm --stream --recursive run lint",
"format": "pnpm --stream --recursive run format",
"test": "pnpm --stream --recursive --sequential run test",
"verify": "pnpm run lint && pnpm run build && pnpm run test",
"cleanup": "pnpm --stream --recursive run cleanup",
"cleanup:modules": "pnpm --stream --recursive run cleanup:modules && rm -rf node_modules",
"cleanup:all": "pnpm run config:clear && pnpm run cleanup && pnpm run cleanup:modules",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && git add CHANGELOG.md",
"ci:version": "pnpm changelog && pnpm changeset version && pnpm install --no-frozen-lockfile && git add .",
"prepare": "husky install"
},
"dependencies": {
"husky": "^8.0.3"
},
"engines": {
"node": ">= 18.0.0",
"pnpm": ">= 8.7.0"
},
"os": [
"darwin",
"linux"
]
}