-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
37 lines (37 loc) · 1.58 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
{
"name": "root",
"private": true,
"devDependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"@changesets/cli": "^2.25.2",
"husky": "^7.0.4",
"lerna": "^5.6.2",
"prettier": "~2.2.1",
"pretty-quick": "~3.1.3"
},
"scripts": {
"dev": "lerna run --scope='@astrouxds/astro-web-components' --stream start.watch",
"dev.react": "lerna run --scope='astro-react' --stream dev",
"dev.vue": "lerna run --scope='astro-vue' --stream dev",
"dev.angular": "lerna run --scope='astro-angular' --stream start",
"prepare": "husky install",
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"build": "lerna run --scope '{@astrouxds/astro-web-components,@astrouxds/react,angular-workspace}' build",
"build.tests": "lerna run --scope '{@astrouxds/astro-web-components,@astrouxds/react}' build",
"build.web-comps": "lerna run --scope '@astrouxds/astro-web-components' build",
"build.react": "lerna run --scope '@astrouxds/react' build",
"postbuild": "npx pretty-quick",
"test": "lerna run --ignore @astrouxds/angular test",
"release": "node ./.scripts/release.js && changeset publish",
"test.web-comps.unit": "lerna run --scope '@astrouxds/astro-web-components' test.unit",
"test.web-comps.e2e": "lerna run --scope '@astrouxds/astro-web-components' test.e2e",
"web-comps.install": "cd ./packages/web-components && npm ci",
"react.install": "cd ./packages/react && npm ci",
"test.react": "lerna run --scope '@astrouxds/react' test"
},
"engines": {
"node": ">=18",
"npm": ">=10.7.0"
}
}