-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 750 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 750 Bytes
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
{
"name": "stencil-react-repros",
"private": true,
"version": "0.1.0",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "lerna run build",
"dev:vite": "npm --workspace stencil-react-vite run dev",
"dev:next": "npm --workspace stencil-react-nextjs run dev",
"clean": "lerna run clean && rimraf node_modules",
"prettier": "leran run prettier"
},
"nx": {
"targets": {
"build": {
"dependsOn": [
"^build"
]
}
}
},
"devDependencies": {
"lerna": "^8.1.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"tsx": "^4.10.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=16.0.0"
},
"volta": {
"node": "20.13.1"
}
}