-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
44 lines (44 loc) · 2.08 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
{
"name": "@contentful/apps",
"private": true,
"engines": {
"node": ">=16.0.0 < 19.0.0",
"npm": ">= 8.0.0 < 11.0.0"
},
"devDependencies": {
"@sentry/cli": "^2.14.4",
"eslint": "^7.32.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.8.8"
},
"scripts": {
"bootstrap": "lerna bootstrap --no-ci --since master --include-dependencies",
"bootstrap:ci": "lerna bootstrap --ci --concurrency=1 --since=${SINCE:-master} --include-dependencies",
"clean": "lerna clean",
"lint": "lerna run lint --concurrency=3 --since=${SINCE:-master} --include-dependencies",
"verify-config": "lerna run verify-config --concurrency=3 --since=${SINCE:-master} --include-dependencies",
"build": "lerna run build --concurrency=1 --stream --since=${SINCE:-master} --include-dependencies",
"test": "lerna run test:ci --concurrency=1 --stream --since=${SINCE:-master} --include-dependencies",
"deploy": "lerna run deploy --concurrency=3 --since=${SINCE:-master}",
"deploy:test": "lerna run deploy:test --concurrency=3 --since=${SINCE:-master}",
"post-deploy": "lerna run post-deploy",
"publish-packages": "lerna version --conventional-commits --no-private --force-git-tag --create-release github --yes && lerna publish from-git --yes",
"prettier:list": "npx [email protected] --list-different",
"prettier:write": "npx [email protected] --write",
"prettier:check": "npx [email protected] --check '**/*.{js,jsx,ts,tsx}'",
"prepare": "husky install",
"sentry-release": "SENTRY_RELEASE=$(git rev-parse --short HEAD); sentry-cli releases --log-level=debug new -p marketplace-apps $SENTRY_RELEASE && sentry-cli releases --log-level=debug set-commits --auto --ignore-missing $SENTRY_RELEASE && sentry-cli releases --log-level=debug finalize $SENTRY_RELEASE && sentry-cli releases --log-level=debug deploys $SENTRY_RELEASE new -e production"
},
"dependencies": {
"lerna": "6.6.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run prettier:write"
]
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}