-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
33 lines (33 loc) · 1.55 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
{
"name": "root",
"private": true,
"scripts": {
"list:packages": "lerna list --all",
"storybook": "lerna run storybook --scope @infineon/infineon-design-system-stencil",
"index": "lerna run index --scope @infineon/infineon-design-system-stencil",
"prebuild": "node build-utils/scripts/prebuild.js",
"build:components": "lerna run build:stencil --scope @infineon/infineon-design-system-stencil",
"test:components": "lerna run test --scope @infineon/infineon-design-system-stencil",
"build:storybook": "lerna run build:storybook --scope @infineon/infineon-design-system-stencil",
"build:components-react": "lerna run build --scope @infineon/infineon-design-system-react",
"build:components-vue": "lerna run build --scope @infineon/infineon-design-system-vue",
"build:components-angular": "lerna run build:library --scope components-angular",
"test": "lerna run test --scope @infineon/infineon-design-system-stencil",
"graph": "nx graph",
"vanilla:dev": "cd examples/stencil-components/vanilla-cdn && npm run dev:watch",
"react-vite-js:dev": "cd examples/wrapper-components/react-vite-js && npm run test:local",
"vue-javascript:dev": "cd examples/wrapper-components/vue-javascript && npm run test:local",
"angular:dev": "cd packages/components-angular && npm run test:local"
},
"workspaces": [
"packages/*",
"packages/components-angular/projects/*"
],
"devDependencies": {
"@types/node": "^20.12.7",
"lerna": "^7.0.0",
"nx": "^16.10.0",
"typescript": "^5.4.5",
"wait-on": "^7.2.0"
}
}