forked from contentful/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.98 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
{
"name": "@contentful/apps",
"private": true,
"engines": {
"node": ">=16.0.0 < 18.0.0",
"npm": ">= 8.0.0 < 9.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 master --include-dependencies",
"bootstrap:ci-deploy": "lerna bootstrap --ci --concurrency=1",
"clean": "lerna clean",
"lint": "lerna run lint --concurrency=3 --since master --include-dependencies",
"verify-config": "lerna run verify-config --concurrency=3 --since master --include-dependencies",
"build": "lerna run build --concurrency=1 --stream --since master --include-dependencies",
"build:deploy": "lerna run build --concurrency=1 --stream",
"test": "lerna run test:ci --concurrency=1 --stream --since master --include-dependencies",
"deploy": "lerna run deploy --concurrency=3",
"deploy:test": "lerna run deploy:test --concurrency=3",
"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": "prettier --no-editorconfig --no-error-on-unmatched-pattern --write {apps,packages,examples}/**/*.{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}": [
"prettier --write"
]
}
}