create-cedar-app 4.2.1-next.0 → 4.2.1-next.269
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/database-overlays/neon-postgres/.env.defaults +20 -0
- package/database-overlays/neon-postgres/api/package.json +2 -2
- package/database-overlays/pglite/api/package.json +4 -4
- package/dist/create-cedar-app.js +430 -408
- package/package.json +6 -6
- package/templates/esm-js/api/package.json +3 -2
- package/templates/esm-js/api/prisma.config.cjs +1 -1
- package/templates/esm-js/package.json +6 -6
- package/templates/esm-js/scripts/jsconfig.json +6 -0
- package/templates/esm-js/web/{src/index.html → index.html} +1 -1
- package/templates/esm-js/web/package.json +4 -4
- package/templates/esm-js/web/src/entry.client.jsx +8 -8
- package/templates/esm-ts/api/package.json +3 -2
- package/templates/esm-ts/api/prisma.config.cjs +1 -1
- package/templates/esm-ts/package.json +6 -6
- package/templates/esm-ts/scripts/tsconfig.json +6 -0
- package/templates/esm-ts/web/{src/index.html → index.html} +1 -1
- package/templates/esm-ts/web/package.json +4 -4
- package/templates/esm-ts/web/src/entry.client.tsx +8 -8
- package/templates/js/api/package.json +3 -2
- package/templates/js/api/prisma.config.cjs +1 -1
- package/templates/js/package.json +4 -4
- package/templates/js/scripts/jsconfig.json +6 -0
- package/templates/js/web/{src/index.html → index.html} +1 -1
- package/templates/js/web/package.json +4 -4
- package/templates/js/web/src/entry.client.jsx +8 -8
- package/templates/overlays/cjs/npm/package.json +4 -4
- package/templates/overlays/cjs/pnpm/package.json +11 -9
- package/templates/overlays/cjs/pnpm/pnpm-workspace.yaml +18 -0
- package/templates/overlays/cjs/yarn/package.json +19 -7
- package/templates/overlays/esm/npm/package.json +4 -4
- package/templates/overlays/esm/pnpm/package.json +11 -9
- package/templates/overlays/esm/pnpm/pnpm-workspace.yaml +18 -0
- package/templates/overlays/esm/yarn/package.json +21 -9
- package/templates/ts/api/package.json +3 -2
- package/templates/ts/api/prisma.config.cjs +1 -1
- package/templates/ts/package.json +4 -4
- package/templates/ts/scripts/tsconfig.json +6 -0
- package/templates/ts/web/{src/index.html → index.html} +1 -1
- package/templates/ts/web/package.json +4 -4
- package/templates/ts/web/src/entry.client.tsx +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-cedar-app",
|
|
3
|
-
"version": "4.2.1-next.
|
|
3
|
+
"version": "4.2.1-next.269",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/cedarjs/cedar.git",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"@babel/plugin-transform-typescript": "^7.26.8",
|
|
30
30
|
"@cedarjs/framework-tools": "4.2.0",
|
|
31
31
|
"@cedarjs/tui": "4.2.0",
|
|
32
|
-
"@opentelemetry/api": "1.9.
|
|
32
|
+
"@opentelemetry/api": "1.9.1",
|
|
33
33
|
"@opentelemetry/exporter-trace-otlp-http": "0.57.2",
|
|
34
34
|
"@opentelemetry/resources": "1.30.1",
|
|
35
35
|
"@opentelemetry/sdk-trace-node": "1.30.1",
|
|
36
|
-
"@opentelemetry/semantic-conventions": "1.
|
|
36
|
+
"@opentelemetry/semantic-conventions": "1.41.1",
|
|
37
37
|
"@types/babel__core": "7.20.5",
|
|
38
38
|
"@types/klaw-sync": "6.0.5",
|
|
39
39
|
"ansis": "4.2.0",
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"gradient-string": "3.0.0",
|
|
44
44
|
"klaw-sync": "7.0.0",
|
|
45
45
|
"semver": "7.7.4",
|
|
46
|
-
"systeminformation": "5.31.
|
|
46
|
+
"systeminformation": "5.31.7",
|
|
47
47
|
"termi-link": "1.1.0",
|
|
48
|
-
"tsx": "4.
|
|
48
|
+
"tsx": "4.22.4",
|
|
49
49
|
"untildify": "4.0.0",
|
|
50
50
|
"uuid": "11.1.0",
|
|
51
|
-
"vitest": "3.2.
|
|
51
|
+
"vitest": "3.2.6",
|
|
52
52
|
"yargs": "17.7.2"
|
|
53
53
|
},
|
|
54
54
|
"engines": {
|
|
@@ -4,9 +4,10 @@
|
|
|
4
4
|
"version": "0.0.0",
|
|
5
5
|
"private": true,
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@cedarjs/api": "4.2.1-next.
|
|
8
|
-
"@cedarjs/graphql-server": "4.2.1-next.
|
|
7
|
+
"@cedarjs/api": "4.2.1-next.269",
|
|
8
|
+
"@cedarjs/graphql-server": "4.2.1-next.269",
|
|
9
9
|
"@prisma/adapter-better-sqlite3": "7.8.0",
|
|
10
|
+
"@prisma/client": "7.8.0",
|
|
10
11
|
"better-sqlite3": "12.9.0"
|
|
11
12
|
}
|
|
12
13
|
}
|
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
"web"
|
|
7
7
|
],
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@cedarjs/core": "4.2.1-next.
|
|
10
|
-
"@cedarjs/eslint-config": "4.2.1-next.
|
|
11
|
-
"@cedarjs/project-config": "4.2.1-next.
|
|
12
|
-
"@cedarjs/testing": "4.2.1-next.
|
|
13
|
-
"vitest": "3.2.
|
|
9
|
+
"@cedarjs/core": "4.2.1-next.269",
|
|
10
|
+
"@cedarjs/eslint-config": "4.2.1-next.269",
|
|
11
|
+
"@cedarjs/project-config": "4.2.1-next.269",
|
|
12
|
+
"@cedarjs/testing": "4.2.1-next.269",
|
|
13
|
+
"vitest": "3.2.6"
|
|
14
14
|
},
|
|
15
15
|
"engines": {
|
|
16
16
|
"node": "=24.x"
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
"packageManager": "yarn@4.14.1",
|
|
19
19
|
"resolutions": {
|
|
20
20
|
"react-is": "19.2.3",
|
|
21
|
-
"vite": "7.3.
|
|
21
|
+
"vite": "7.3.5"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
]
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@cedarjs/forms": "4.2.1-next.
|
|
16
|
-
"@cedarjs/router": "4.2.1-next.
|
|
17
|
-
"@cedarjs/web": "4.2.1-next.
|
|
15
|
+
"@cedarjs/forms": "4.2.1-next.269",
|
|
16
|
+
"@cedarjs/router": "4.2.1-next.269",
|
|
17
|
+
"@cedarjs/web": "4.2.1-next.269",
|
|
18
18
|
"react": "18.3.1",
|
|
19
19
|
"react-dom": "18.3.1"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@cedarjs/vite": "4.2.1-next.
|
|
22
|
+
"@cedarjs/vite": "4.2.1-next.269",
|
|
23
23
|
"@types/react": "^18.2.55",
|
|
24
24
|
"@types/react-dom": "^18.2.19"
|
|
25
25
|
}
|
|
@@ -4,29 +4,29 @@ import App from './App'
|
|
|
4
4
|
import Routes from './Routes'
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
|
-
* When `#
|
|
7
|
+
* When `#cedar-app` isn't empty then it's very likely that you're using
|
|
8
8
|
* prerendering. So React attaches event listeners to the existing markup
|
|
9
9
|
* rather than replacing it.
|
|
10
10
|
* https://react.dev/reference/react-dom/client/hydrateRoot
|
|
11
11
|
*/
|
|
12
|
-
const
|
|
12
|
+
const cedarAppElement = document.getElementById('cedar-app')
|
|
13
13
|
|
|
14
|
-
if (!
|
|
14
|
+
if (!cedarAppElement) {
|
|
15
15
|
throw new Error(
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
'Could not find an element with ID "cedar-app". Please ensure it exists ' +
|
|
17
|
+
'in your `web/index.html` file.'
|
|
18
18
|
)
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
if (
|
|
21
|
+
if (cedarAppElement.children?.length > 0) {
|
|
22
22
|
hydrateRoot(
|
|
23
|
-
|
|
23
|
+
cedarAppElement,
|
|
24
24
|
<App>
|
|
25
25
|
<Routes />
|
|
26
26
|
</App>
|
|
27
27
|
)
|
|
28
28
|
} else {
|
|
29
|
-
const root = createRoot(
|
|
29
|
+
const root = createRoot(cedarAppElement)
|
|
30
30
|
root.render(
|
|
31
31
|
<App>
|
|
32
32
|
<Routes />
|
|
@@ -4,9 +4,10 @@
|
|
|
4
4
|
"version": "0.0.0",
|
|
5
5
|
"private": true,
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@cedarjs/api": "4.2.1-next.
|
|
8
|
-
"@cedarjs/graphql-server": "4.2.1-next.
|
|
7
|
+
"@cedarjs/api": "4.2.1-next.269",
|
|
8
|
+
"@cedarjs/graphql-server": "4.2.1-next.269",
|
|
9
9
|
"@prisma/adapter-better-sqlite3": "7.8.0",
|
|
10
|
+
"@prisma/client": "7.8.0",
|
|
10
11
|
"better-sqlite3": "12.9.0"
|
|
11
12
|
}
|
|
12
13
|
}
|
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
"web"
|
|
7
7
|
],
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@cedarjs/core": "4.2.1-next.
|
|
10
|
-
"@cedarjs/eslint-config": "4.2.1-next.
|
|
11
|
-
"@cedarjs/project-config": "4.2.1-next.
|
|
12
|
-
"@cedarjs/testing": "4.2.1-next.
|
|
13
|
-
"vitest": "3.2.
|
|
9
|
+
"@cedarjs/core": "4.2.1-next.269",
|
|
10
|
+
"@cedarjs/eslint-config": "4.2.1-next.269",
|
|
11
|
+
"@cedarjs/project-config": "4.2.1-next.269",
|
|
12
|
+
"@cedarjs/testing": "4.2.1-next.269",
|
|
13
|
+
"vitest": "3.2.6"
|
|
14
14
|
},
|
|
15
15
|
"engines": {
|
|
16
16
|
"node": "=24.x"
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
"packageManager": "yarn@4.14.1",
|
|
19
19
|
"resolutions": {
|
|
20
20
|
"react-is": "19.2.3",
|
|
21
|
-
"vite": "7.3.
|
|
21
|
+
"vite": "7.3.5"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -6,6 +6,12 @@
|
|
|
6
6
|
"target": "es2023",
|
|
7
7
|
"module": "node20",
|
|
8
8
|
"moduleResolution": "node16",
|
|
9
|
+
"rootDirs": [
|
|
10
|
+
"../api/src",
|
|
11
|
+
"../.cedar/types/mirror/api/src",
|
|
12
|
+
"../web/src",
|
|
13
|
+
"../.cedar/types/mirror/web/src"
|
|
14
|
+
],
|
|
9
15
|
"paths": {
|
|
10
16
|
"$api/*": ["../api/*"],
|
|
11
17
|
"api/*": ["../api/*"],
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
]
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@cedarjs/forms": "4.2.1-next.
|
|
16
|
-
"@cedarjs/router": "4.2.1-next.
|
|
17
|
-
"@cedarjs/web": "4.2.1-next.
|
|
15
|
+
"@cedarjs/forms": "4.2.1-next.269",
|
|
16
|
+
"@cedarjs/router": "4.2.1-next.269",
|
|
17
|
+
"@cedarjs/web": "4.2.1-next.269",
|
|
18
18
|
"react": "18.3.1",
|
|
19
19
|
"react-dom": "18.3.1"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@cedarjs/vite": "4.2.1-next.
|
|
22
|
+
"@cedarjs/vite": "4.2.1-next.269",
|
|
23
23
|
"@types/react": "^18.2.55",
|
|
24
24
|
"@types/react-dom": "^18.2.19"
|
|
25
25
|
}
|
|
@@ -4,29 +4,29 @@ import App from './App'
|
|
|
4
4
|
import Routes from './Routes'
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
|
-
* When `#
|
|
7
|
+
* When `#cedar-app` isn't empty then it's very likely that you're using
|
|
8
8
|
* prerendering. So React attaches event listeners to the existing markup
|
|
9
9
|
* rather than replacing it.
|
|
10
10
|
* https://react.dev/reference/react-dom/client/hydrateRoot
|
|
11
11
|
*/
|
|
12
|
-
const
|
|
12
|
+
const cedarAppElement = document.getElementById('cedar-app')
|
|
13
13
|
|
|
14
|
-
if (!
|
|
14
|
+
if (!cedarAppElement) {
|
|
15
15
|
throw new Error(
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
'Could not find an element with ID "cedar-app". Please ensure it exists ' +
|
|
17
|
+
'in your `web/index.html` file.'
|
|
18
18
|
)
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
if (
|
|
21
|
+
if (cedarAppElement.children?.length > 0) {
|
|
22
22
|
hydrateRoot(
|
|
23
|
-
|
|
23
|
+
cedarAppElement,
|
|
24
24
|
<App>
|
|
25
25
|
<Routes />
|
|
26
26
|
</App>
|
|
27
27
|
)
|
|
28
28
|
} else {
|
|
29
|
-
const root = createRoot(
|
|
29
|
+
const root = createRoot(cedarAppElement)
|
|
30
30
|
root.render(
|
|
31
31
|
<App>
|
|
32
32
|
<Routes />
|
|
@@ -4,9 +4,10 @@
|
|
|
4
4
|
"version": "0.0.0",
|
|
5
5
|
"private": true,
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@cedarjs/api": "4.2.1-next.
|
|
8
|
-
"@cedarjs/graphql-server": "4.2.1-next.
|
|
7
|
+
"@cedarjs/api": "4.2.1-next.269",
|
|
8
|
+
"@cedarjs/graphql-server": "4.2.1-next.269",
|
|
9
9
|
"@prisma/adapter-better-sqlite3": "7.8.0",
|
|
10
|
+
"@prisma/client": "7.8.0",
|
|
10
11
|
"better-sqlite3": "12.9.0"
|
|
11
12
|
}
|
|
12
13
|
}
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
"web"
|
|
7
7
|
],
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@cedarjs/core": "4.2.1-next.
|
|
10
|
-
"@cedarjs/eslint-config": "4.2.1-next.
|
|
11
|
-
"@cedarjs/project-config": "4.2.1-next.
|
|
12
|
-
"@cedarjs/testing": "4.2.1-next.
|
|
9
|
+
"@cedarjs/core": "4.2.1-next.269",
|
|
10
|
+
"@cedarjs/eslint-config": "4.2.1-next.269",
|
|
11
|
+
"@cedarjs/project-config": "4.2.1-next.269",
|
|
12
|
+
"@cedarjs/testing": "4.2.1-next.269"
|
|
13
13
|
},
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": "=24.x"
|
|
@@ -6,6 +6,12 @@
|
|
|
6
6
|
"module": "node20",
|
|
7
7
|
"moduleResolution": "node16",
|
|
8
8
|
"allowImportingTsExtensions": true,
|
|
9
|
+
"rootDirs": [
|
|
10
|
+
"../api/src",
|
|
11
|
+
"../.cedar/types/mirror/api/src",
|
|
12
|
+
"../web/src",
|
|
13
|
+
"../.cedar/types/mirror/web/src"
|
|
14
|
+
],
|
|
9
15
|
"paths": {
|
|
10
16
|
"$api/*": [
|
|
11
17
|
"../api/*"
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
]
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@cedarjs/forms": "4.2.1-next.
|
|
16
|
-
"@cedarjs/router": "4.2.1-next.
|
|
17
|
-
"@cedarjs/web": "4.2.1-next.
|
|
15
|
+
"@cedarjs/forms": "4.2.1-next.269",
|
|
16
|
+
"@cedarjs/router": "4.2.1-next.269",
|
|
17
|
+
"@cedarjs/web": "4.2.1-next.269",
|
|
18
18
|
"react": "18.3.1",
|
|
19
19
|
"react-dom": "18.3.1"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@cedarjs/vite": "4.2.1-next.
|
|
22
|
+
"@cedarjs/vite": "4.2.1-next.269",
|
|
23
23
|
"@types/react": "^18.2.55",
|
|
24
24
|
"@types/react-dom": "^18.2.19"
|
|
25
25
|
}
|
|
@@ -4,29 +4,29 @@ import App from './App'
|
|
|
4
4
|
import Routes from './Routes'
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
|
-
* When `#
|
|
7
|
+
* When `#cedar-app` isn't empty then it's very likely that you're using
|
|
8
8
|
* prerendering. So React attaches event listeners to the existing markup
|
|
9
9
|
* rather than replacing it.
|
|
10
10
|
* https://react.dev/reference/react-dom/client/hydrateRoot
|
|
11
11
|
*/
|
|
12
|
-
const
|
|
12
|
+
const cedarAppElement = document.getElementById('cedar-app')
|
|
13
13
|
|
|
14
|
-
if (!
|
|
14
|
+
if (!cedarAppElement) {
|
|
15
15
|
throw new Error(
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
'Could not find an element with ID "cedar-app". Please ensure it exists ' +
|
|
17
|
+
'in your `web/index.html` file.'
|
|
18
18
|
)
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
if (
|
|
21
|
+
if (cedarAppElement.children?.length > 0) {
|
|
22
22
|
hydrateRoot(
|
|
23
|
-
|
|
23
|
+
cedarAppElement,
|
|
24
24
|
<App>
|
|
25
25
|
<Routes />
|
|
26
26
|
</App>
|
|
27
27
|
)
|
|
28
28
|
} else {
|
|
29
|
-
const root = createRoot(
|
|
29
|
+
const root = createRoot(cedarAppElement)
|
|
30
30
|
root.render(
|
|
31
31
|
<App>
|
|
32
32
|
<Routes />
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
"web"
|
|
7
7
|
],
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@cedarjs/core": "4.2.1-next.
|
|
10
|
-
"@cedarjs/eslint-config": "4.2.1-next.
|
|
11
|
-
"@cedarjs/project-config": "4.2.1-next.
|
|
12
|
-
"@cedarjs/testing": "4.2.1-next.
|
|
9
|
+
"@cedarjs/core": "4.2.1-next.269",
|
|
10
|
+
"@cedarjs/eslint-config": "4.2.1-next.269",
|
|
11
|
+
"@cedarjs/project-config": "4.2.1-next.269",
|
|
12
|
+
"@cedarjs/testing": "4.2.1-next.269"
|
|
13
13
|
},
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": "=24.x"
|
|
@@ -2,18 +2,20 @@
|
|
|
2
2
|
"private": true,
|
|
3
3
|
"type": "commonjs",
|
|
4
4
|
"devDependencies": {
|
|
5
|
-
"@cedarjs/core": "4.2.1-next.
|
|
6
|
-
"@cedarjs/eslint-config": "4.2.1-next.
|
|
7
|
-
"@cedarjs/project-config": "4.2.1-next.
|
|
8
|
-
"@cedarjs/testing": "4.2.1-next.
|
|
5
|
+
"@cedarjs/core": "4.2.1-next.269",
|
|
6
|
+
"@cedarjs/eslint-config": "4.2.1-next.269",
|
|
7
|
+
"@cedarjs/project-config": "4.2.1-next.269",
|
|
8
|
+
"@cedarjs/testing": "4.2.1-next.269"
|
|
9
9
|
},
|
|
10
10
|
"engines": {
|
|
11
|
-
"node": "=24.x"
|
|
11
|
+
"node": "=24.x",
|
|
12
|
+
"pnpm": ">=11.8.0 <12.0.0"
|
|
12
13
|
},
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
14
|
+
"devEngines": {
|
|
15
|
+
"packageManager": {
|
|
16
|
+
"name": "pnpm",
|
|
17
|
+
"version": "11.8.0",
|
|
18
|
+
"onFail": "download"
|
|
17
19
|
}
|
|
18
20
|
}
|
|
19
21
|
}
|
|
@@ -1,3 +1,21 @@
|
|
|
1
1
|
packages:
|
|
2
2
|
- api
|
|
3
3
|
- web
|
|
4
|
+
|
|
5
|
+
allowBuilds:
|
|
6
|
+
'@clerk/shared': false
|
|
7
|
+
'@firebase/util': true
|
|
8
|
+
'@prisma/client': false
|
|
9
|
+
'@prisma/engines': true
|
|
10
|
+
'@swc/core': true
|
|
11
|
+
better-sqlite3: true
|
|
12
|
+
core-js: false
|
|
13
|
+
core-js-pure: false
|
|
14
|
+
esbuild: true
|
|
15
|
+
msw: true
|
|
16
|
+
prisma: false
|
|
17
|
+
protobufjs: false
|
|
18
|
+
unrs-resolver: false
|
|
19
|
+
|
|
20
|
+
overrides:
|
|
21
|
+
'react-is': '19.2.3'
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
"web"
|
|
7
7
|
],
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@cedarjs/core": "4.2.1-next.
|
|
10
|
-
"@cedarjs/eslint-config": "4.2.1-next.
|
|
11
|
-
"@cedarjs/project-config": "4.2.1-next.
|
|
12
|
-
"@cedarjs/testing": "4.2.1-next.
|
|
9
|
+
"@cedarjs/core": "4.2.1-next.269",
|
|
10
|
+
"@cedarjs/eslint-config": "4.2.1-next.269",
|
|
11
|
+
"@cedarjs/project-config": "4.2.1-next.269",
|
|
12
|
+
"@cedarjs/testing": "4.2.1-next.269"
|
|
13
13
|
},
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": "=24.x"
|
|
@@ -20,11 +20,14 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependenciesMeta": {
|
|
22
22
|
"@clerk/shared": {
|
|
23
|
-
"built":
|
|
23
|
+
"built": false
|
|
24
24
|
},
|
|
25
25
|
"@firebase/util": {
|
|
26
26
|
"built": true
|
|
27
27
|
},
|
|
28
|
+
"@prisma/client": {
|
|
29
|
+
"built": false
|
|
30
|
+
},
|
|
28
31
|
"@prisma/engines": {
|
|
29
32
|
"built": true
|
|
30
33
|
},
|
|
@@ -34,6 +37,12 @@
|
|
|
34
37
|
"better-sqlite3": {
|
|
35
38
|
"built": true
|
|
36
39
|
},
|
|
40
|
+
"core-js": {
|
|
41
|
+
"built": false
|
|
42
|
+
},
|
|
43
|
+
"core-js-pure": {
|
|
44
|
+
"built": false
|
|
45
|
+
},
|
|
37
46
|
"esbuild": {
|
|
38
47
|
"built": true
|
|
39
48
|
},
|
|
@@ -41,10 +50,13 @@
|
|
|
41
50
|
"built": true
|
|
42
51
|
},
|
|
43
52
|
"prisma": {
|
|
44
|
-
"built":
|
|
53
|
+
"built": false
|
|
45
54
|
},
|
|
46
55
|
"protobufjs": {
|
|
47
|
-
"built":
|
|
56
|
+
"built": false
|
|
57
|
+
},
|
|
58
|
+
"unrs-resolver": {
|
|
59
|
+
"built": false
|
|
48
60
|
}
|
|
49
61
|
}
|
|
50
62
|
}
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
"web"
|
|
7
7
|
],
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@cedarjs/core": "4.2.1-next.
|
|
10
|
-
"@cedarjs/eslint-config": "4.2.1-next.
|
|
11
|
-
"@cedarjs/project-config": "4.2.1-next.
|
|
12
|
-
"@cedarjs/testing": "4.2.1-next.
|
|
9
|
+
"@cedarjs/core": "4.2.1-next.269",
|
|
10
|
+
"@cedarjs/eslint-config": "4.2.1-next.269",
|
|
11
|
+
"@cedarjs/project-config": "4.2.1-next.269",
|
|
12
|
+
"@cedarjs/testing": "4.2.1-next.269"
|
|
13
13
|
},
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": "=24.x"
|
|
@@ -2,18 +2,20 @@
|
|
|
2
2
|
"private": true,
|
|
3
3
|
"type": "module",
|
|
4
4
|
"devDependencies": {
|
|
5
|
-
"@cedarjs/core": "4.2.1-next.
|
|
6
|
-
"@cedarjs/eslint-config": "4.2.1-next.
|
|
7
|
-
"@cedarjs/project-config": "4.2.1-next.
|
|
8
|
-
"@cedarjs/testing": "4.2.1-next.
|
|
5
|
+
"@cedarjs/core": "4.2.1-next.269",
|
|
6
|
+
"@cedarjs/eslint-config": "4.2.1-next.269",
|
|
7
|
+
"@cedarjs/project-config": "4.2.1-next.269",
|
|
8
|
+
"@cedarjs/testing": "4.2.1-next.269"
|
|
9
9
|
},
|
|
10
10
|
"engines": {
|
|
11
|
-
"node": "=24.x"
|
|
11
|
+
"node": "=24.x",
|
|
12
|
+
"pnpm": ">=11.8.0 <12.0.0"
|
|
12
13
|
},
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
14
|
+
"devEngines": {
|
|
15
|
+
"packageManager": {
|
|
16
|
+
"name": "pnpm",
|
|
17
|
+
"version": "11.8.0",
|
|
18
|
+
"onFail": "download"
|
|
17
19
|
}
|
|
18
20
|
}
|
|
19
21
|
}
|
|
@@ -1,3 +1,21 @@
|
|
|
1
1
|
packages:
|
|
2
2
|
- api
|
|
3
3
|
- web
|
|
4
|
+
|
|
5
|
+
allowBuilds:
|
|
6
|
+
'@clerk/shared': false
|
|
7
|
+
'@firebase/util': true
|
|
8
|
+
'@prisma/client': false
|
|
9
|
+
'@prisma/engines': true
|
|
10
|
+
'@swc/core': true
|
|
11
|
+
better-sqlite3: true
|
|
12
|
+
core-js: false
|
|
13
|
+
core-js-pure: false
|
|
14
|
+
esbuild: true
|
|
15
|
+
msw: true
|
|
16
|
+
prisma: false
|
|
17
|
+
protobufjs: false
|
|
18
|
+
unrs-resolver: false
|
|
19
|
+
|
|
20
|
+
overrides:
|
|
21
|
+
'react-is': '19.2.3'
|