-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "maverick-workspace",
"version": "0.43.2",
"license": "MIT",
"type": "module",
"private": true,
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm -F maverick.js build",
"build:cli": "pnpm -F cli build",
"test:client": "pnpm -F maverick.js test:client",
"test:client:watch": "pnpm -F maverick.js test:client:watch",
"test:cli": "pnpm -F cli test",
"test:cli:watch": "pnpm -F cli test:watch",
"test:server": "pnpm -F maverick.js test:server",
"test:server:watch": "pnpm -F maverick.js test:server:watch",
"test:runtime": "pnpm test:client && pnpm test:server",
"test:all": "pnpm test:runtime && pnpm test:cli",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "pnpm build && pnpm build:cli && node ./.scripts/release.js"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^18.0.3",
"conventional-changelog-cli": "^4.1.0",
"enquirer": "^2.3.6",
"execa": "^7.0.0",
"kleur": "^4.1.5",
"minimist": "^1.2.7",
"prettier": "^3.1.0",
"semver": "^7.3.8",
"simple-git-hooks": "^2.8.0",
"typescript": "^5.3.3"
},
"simple-git-hooks": {
"pre-commit": "npx --no-install lint-staged",
"commit-msg": "npx --no -- commitlint --edit $1"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,md,json}": "prettier --write"
},
"volta": {
"node": "16.15.1"
},
"packageManager": "pnpm@7.2.1"
}