-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.57 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
42
43
44
45
46
47
48
49
{
"name": "stencil-nextjs-example",
"version": "0.0.0",
"description": "This project shows how we got Stencil Web Components working inside the Next.js app directory.",
"author": "smartive AG <hello@smartive.ch>",
"license": "ISC",
"bugs": {
"url": "https://github.com/smartive/stencil-nextjs-example/issues"
},
"homepage": "https://github.com/smartive/stencil-nextjs-example#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/smartive/stencil-nextjs-example.git"
},
"keywords": [
"nextjs",
"next",
"stencil",
"stenciljs",
"app",
"directory",
"web",
"components"
],
"scripts": {
"lint": "lerna run lint",
"web-components:build": "lerna run build --scope=abc-web-components",
"web-components-react-wrapper:build": "lerna run build --scope=abc-web-components-react-wrapper",
"cdn-build:build": "lerna run build --skip-nx-cache --scope=abc-cdn-build",
"cdn-build:dev": "lerna run dev --skip-nx-cache --scope=abc-cdn-build",
"docs:build": "lerna run build --skip-nx-cache --scope=abc-docs",
"docs:dev": "lerna run dev --skip-nx-cache --scope=abc-docs",
"app:build": "lerna run build --skip-nx-cache --scope=abc-app",
"app:dev": "lerna run dev --skip-nx-cache --scope=abc-app",
"app:start": "lerna run start --skip-nx-cache --scope=abc-app",
"app:clean": "del-cli --force ./packages/app/.next"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"devDependencies": {
"del-cli": "^5.1.0",
"lerna": "8.0.2"
},
"workspaces": [
"packages/*"
]
}