-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 2.16 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
53
54
55
56
57
58
59
{
"name": "silverback",
"private": true,
"engines": {
"node": "18.19.0",
"pnpm": "8.15.8"
},
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm -r build",
"commit": "pnpm git-cz",
"test:format": "pnpm test:format:root --check && pnpm test:format:workspaces --check",
"test:format:fix": "pnpm test:format:root --write && pnpm test:format:workspaces --write",
"test:format:root": "pnpm prettier --ignore-unknown '**/**'",
"test:format:workspaces": "pnpm --workspace-concurrency=1 -r exec prettier --ignore-unknown '**/**'",
"test:static": "pnpm lerna run test:static --since",
"test:static:all": "pnpm lerna run test:static",
"test:unit": "pnpm lerna run test:unit --since",
"test:unit:all": "pnpm lerna run test:unit",
"test:integration": "pnpm test:integration:all --since",
"test:integration:all": "pnpm lerna run test:integration --stream --concurrency=1 --ignore '@-amazeelabs/example-tests'",
"git-registry": "pnpm verdaccio -l 127.0.0.1:4873 -c config.yml",
"git-registry:with-logs": "pnpm verdaccio -l 127.0.0.1:4873 -c config.yml > /tmp/verdaccio.log 2>&1",
"kill-php-deps": "pnpm -r --shell-mode exec 'for DIR in ls node_modules/@-*; do rm -rf $DIR; done' # Remove internal PHP dependencies from node_modules. Otherwise Drupal tests are either failing or running crazy slow.",
"prepare": "pnpm kill-php-deps",
"postinstall": "husky install"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"commitizen": "4.3.0",
"husky": "9.0.11",
"lerna": "8.1.2",
"prettier": "3.2.5",
"typescript": "5.4.5",
"verdaccio": "5.30.3",
"verdaccio-git": "workspace:*"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lerna run --concurrency 1 --stream precommit --since HEAD --exclude-dependents"
}
},
"resolutions": {
"sharp": "0.33.3",
"@graphql-tools/load": "^8.0.2"
}
}