This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.76 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
50
51
52
53
54
{
"name": "stencil-nextjs-example",
"version": "0.0.0-development",
"description": "This project shows how we got Stencil Web Components working inside the Next.js app directory.",
"author": "smartive AG <[email protected]>",
"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://[email protected]/smartive/stencil-nextjs-example.git"
},
"keywords": [
"nextjs",
"next",
"stencil",
"stenciljs",
"app",
"directory",
"web",
"components"
],
"scripts": {
"lint": "lerna run lint",
"clean:app": "del-cli --force ./packages/app/.next",
"dev:cdn-build": "lerna run dev --skip-nx-cache --scope=abc-cdn-build",
"dev:docs": "lerna run dev --skip-nx-cache --scope=abc-docs",
"dev:app": "lerna run dev --skip-nx-cache --scope=abc-app",
"build:stencil-react-ssr-output-target": "lerna run build --scope=@smartive/stencil-react-ssr-output-target",
"build:web-components": "lerna run build --scope=abc-web-components",
"build:cdn-build": "lerna run build --skip-nx-cache --scope=abc-cdn-build",
"build:docs": "lerna run build --skip-nx-cache --scope=abc-docs",
"build:app": "lerna run build --skip-nx-cache --scope=abc-app",
"start:app": "lerna run start --skip-nx-cache --scope=abc-app"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"overrides": {
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@stencil/core": "npm:@smartive/[email protected]"
},
"devDependencies": {
"del-cli": "^5.1.0",
"lerna": "8.1.8"
},
"workspaces": [
"packages/*"
]
}