forked from contentful/marketplace-partner-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "@contentful/marketplace-partner-apps",
"private": false,
"engines": {
"node": ">=18.0.0 < 20.0.0",
"npm": ">= 9.0.0 < 11.0.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@types/node": "^22.3.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.1",
"prettier": "2.8.8"
},
"scripts": {
"test-apps": "lerna run test --concurrency=1 --stream --since main",
"build-apps": "lerna run build --concurrency=1 --stream --since main",
"build-apps:deploy": "lerna run build --concurrency=1 --stream",
"install-apps": "lerna run install-ci --concurrency=1 --stream --since main",
"install-apps:deploy": "lerna run install-ci --concurrency=1 --stream",
"deploy:staging": "lerna run deploy:staging --concurrency=3",
"deploy:production": "lerna run deploy --concurrency=3",
"prepare": "husky install"
},
"lint-staged": {
"*.{t,j}s?(x)": [
"prettier --write"
]
},
"dependencies": {
"lerna": "^7.0.2"
}
}