-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1016 Bytes
/
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
{
"name": "designsystem-boilerplate",
"author": "Outsystems",
"description": "A sample monorepo repository for orgnizations looking to create their own stencil-based component library",
"version": "0.0.1",
"license": "MIT",
"type": "module",
"scripts": {
"build": "run-s build:*",
"build:core": "pnpm --filter @placid/core run build",
"build:frameworks": "pnpm --filter @placid/vue --filter @placid/react --filter angular-workspace run build",
"start:react": "pnpm --filter @apps/react run start",
"start:vue": "pnpm --filter @apps/vue run start",
"start:next": "pnpm --filter @apps/next run start",
"start:nuxt": "pnpm --filter @apps/nuxt run start",
"start:angular": "pnpm --filter @apps/angular run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stencil-community/designsystem-boilerplate.git"
},
"keywords": [
"stencil",
"component library",
"ionic"
],
"devDependencies": {
"npm-run-all2": "^6.2.2"
}
}