@stone-js/starters 0.8.10 → 0.8.11
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/basic-react-declarative/package.json +5 -5
- package/basic-react-imperative/package.json +5 -5
- package/basic-react-native-declarative/README.md +14 -0
- package/basic-react-native-declarative/package.json +3 -3
- package/basic-react-native-declarative/tests/Application.spec.ts +1 -1
- package/basic-service-declarative/package.json +4 -4
- package/basic-service-imperative/package.json +4 -4
- package/continuum-showcase/package.json +9 -9
- package/full-react-declarative/package.json +10 -10
- package/full-react-imperative/package.json +10 -10
- package/full-service-declarative/package.json +10 -10
- package/full-service-imperative/package.json +10 -10
- package/package.json +1 -1
- package/standard-react-declarative/package.json +9 -9
- package/standard-react-imperative/package.json +9 -9
- package/standard-service-declarative/package.json +7 -7
- package/standard-service-imperative/package.json +7 -7
|
@@ -20,16 +20,16 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"react": "^19.0.0",
|
|
22
22
|
"react-dom": "^19.0.0",
|
|
23
|
-
"@stone-js/core": "^0.8.
|
|
24
|
-
"@stone-js/use-react": "^0.8.
|
|
25
|
-
"@stone-js/browser-adapter": "^0.8.
|
|
23
|
+
"@stone-js/core": "^0.8.11",
|
|
24
|
+
"@stone-js/use-react": "^0.8.11",
|
|
25
|
+
"@stone-js/browser-adapter": "^0.8.11"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
29
29
|
"@babel/preset-env": "^7.26.9",
|
|
30
30
|
"@babel/preset-typescript": "^7.27.0",
|
|
31
|
-
"@stone-js/cli": "^0.8.
|
|
32
|
-
"@stone-js/testing": "^0.8.
|
|
31
|
+
"@stone-js/cli": "^0.8.11",
|
|
32
|
+
"@stone-js/testing": "^0.8.11",
|
|
33
33
|
"@types/node": "^24.0.7",
|
|
34
34
|
"@types/react": "^19.0.7",
|
|
35
35
|
"@types/react-dom": "^19.0.3",
|
|
@@ -20,16 +20,16 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"react": "^19.0.0",
|
|
22
22
|
"react-dom": "^19.0.0",
|
|
23
|
-
"@stone-js/core": "^0.8.
|
|
24
|
-
"@stone-js/use-react": "^0.8.
|
|
25
|
-
"@stone-js/browser-adapter": "^0.8.
|
|
23
|
+
"@stone-js/core": "^0.8.11",
|
|
24
|
+
"@stone-js/use-react": "^0.8.11",
|
|
25
|
+
"@stone-js/browser-adapter": "^0.8.11"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
29
29
|
"@babel/preset-env": "^7.26.9",
|
|
30
30
|
"@babel/preset-typescript": "^7.27.0",
|
|
31
|
-
"@stone-js/cli": "^0.8.
|
|
32
|
-
"@stone-js/testing": "^0.8.
|
|
31
|
+
"@stone-js/cli": "^0.8.11",
|
|
32
|
+
"@stone-js/testing": "^0.8.11",
|
|
33
33
|
"@types/node": "^24.0.7",
|
|
34
34
|
"@types/react": "^19.0.7",
|
|
35
35
|
"@types/react-dom": "^19.0.3",
|
|
@@ -21,6 +21,20 @@ npm run ios # opens the iOS simulator directly
|
|
|
21
21
|
npm start # or the interactive way: then press i (iOS) or a (Android)
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
+
## Develop it in a browser
|
|
25
|
+
|
|
26
|
+
Faster than a simulator, with Fast Refresh, and the same code runs on a device afterwards. Two
|
|
27
|
+
dependencies the web target needs, and one command:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npx expo install react-dom react-native-web
|
|
31
|
+
npx expo start --web
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Your routes resolve, your loaders run, your screens render. What a browser cannot do it still
|
|
35
|
+
cannot do: `react-native-web` covers the core primitives, not every native module, so a screen
|
|
36
|
+
built on the camera or on secure storage has to be tried on a device.
|
|
37
|
+
|
|
24
38
|
## Test it
|
|
25
39
|
|
|
26
40
|
The whole chain (domain, router, adapter) is pure JavaScript, so the exact modules the application boots are also tested under Node:
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"test:cvg": "npm run test -- --coverage"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@stone-js/browser-core": "^0.8.
|
|
24
|
-
"@stone-js/core": "^0.8.
|
|
25
|
-
"@stone-js/router": "^0.8.
|
|
23
|
+
"@stone-js/browser-core": "^0.8.11",
|
|
24
|
+
"@stone-js/core": "^0.8.11",
|
|
25
|
+
"@stone-js/router": "^0.8.11",
|
|
26
26
|
"expo": "~57.0.14",
|
|
27
27
|
"expo-status-bar": "~57.0.1",
|
|
28
28
|
"fast-text-encoding": "^1.0.6",
|
|
@@ -60,6 +60,6 @@ describe('Stone.js native proof of concept', () => {
|
|
|
60
60
|
await new Promise((resolve) => setImmediate(resolve))
|
|
61
61
|
|
|
62
62
|
const lastPayload = rendered.at(-1)?.content as WelcomeData | undefined
|
|
63
|
-
expect(lastPayload?.route
|
|
63
|
+
expect(lastPayload?.route).not.toBe('/nowhere')
|
|
64
64
|
})
|
|
65
65
|
})
|
|
@@ -18,15 +18,15 @@
|
|
|
18
18
|
"test:cvg": "stone test --coverage"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@stone-js/core": "^0.8.
|
|
22
|
-
"@stone-js/node-http-adapter": "^0.8.
|
|
21
|
+
"@stone-js/core": "^0.8.11",
|
|
22
|
+
"@stone-js/node-http-adapter": "^0.8.11"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
26
26
|
"@babel/preset-env": "^7.26.9",
|
|
27
27
|
"@babel/preset-typescript": "^7.27.0",
|
|
28
|
-
"@stone-js/cli": "^0.8.
|
|
29
|
-
"@stone-js/testing": "^0.8.
|
|
28
|
+
"@stone-js/cli": "^0.8.11",
|
|
29
|
+
"@stone-js/testing": "^0.8.11",
|
|
30
30
|
"@types/node": "^24.0.7",
|
|
31
31
|
"@vitest/coverage-v8": "^3.0.9",
|
|
32
32
|
"vitest": "^3.0.9"
|
|
@@ -18,15 +18,15 @@
|
|
|
18
18
|
"test:cvg": "stone test --coverage"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@stone-js/core": "^0.8.
|
|
22
|
-
"@stone-js/node-http-adapter": "^0.8.
|
|
21
|
+
"@stone-js/core": "^0.8.11",
|
|
22
|
+
"@stone-js/node-http-adapter": "^0.8.11"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
26
26
|
"@babel/preset-env": "^7.26.9",
|
|
27
27
|
"@babel/preset-typescript": "^7.27.0",
|
|
28
|
-
"@stone-js/cli": "^0.8.
|
|
29
|
-
"@stone-js/testing": "^0.8.
|
|
28
|
+
"@stone-js/cli": "^0.8.11",
|
|
29
|
+
"@stone-js/testing": "^0.8.11",
|
|
30
30
|
"@types/node": "^24.0.7",
|
|
31
31
|
"@vitest/coverage-v8": "^3.0.9",
|
|
32
32
|
"vitest": "^3.0.9"
|
|
@@ -15,20 +15,20 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"react": "^19.0.0",
|
|
17
17
|
"react-dom": "^19.0.0",
|
|
18
|
-
"@stone-js/core": "^0.8.
|
|
19
|
-
"@stone-js/router": "^0.8.
|
|
20
|
-
"@stone-js/use-react": "^0.8.
|
|
21
|
-
"@stone-js/http-core": "^0.8.
|
|
22
|
-
"@stone-js/pipeline": "^0.8.
|
|
23
|
-
"@stone-js/browser-adapter": "^0.8.
|
|
24
|
-
"@stone-js/node-http-adapter": "^0.8.
|
|
18
|
+
"@stone-js/core": "^0.8.11",
|
|
19
|
+
"@stone-js/router": "^0.8.11",
|
|
20
|
+
"@stone-js/use-react": "^0.8.11",
|
|
21
|
+
"@stone-js/http-core": "^0.8.11",
|
|
22
|
+
"@stone-js/pipeline": "^0.8.11",
|
|
23
|
+
"@stone-js/browser-adapter": "^0.8.11",
|
|
24
|
+
"@stone-js/node-http-adapter": "^0.8.11"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
28
28
|
"@babel/preset-env": "^7.26.9",
|
|
29
29
|
"@babel/preset-typescript": "^7.27.0",
|
|
30
|
-
"@stone-js/cli": "^0.8.
|
|
31
|
-
"@stone-js/testing": "^0.8.
|
|
30
|
+
"@stone-js/cli": "^0.8.11",
|
|
31
|
+
"@stone-js/testing": "^0.8.11",
|
|
32
32
|
"@types/node": "^24.0.7",
|
|
33
33
|
"@types/react": "^19.0.7",
|
|
34
34
|
"@types/react-dom": "^19.0.3",
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
"test:cvg": "stone test --coverage"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@stone-js/env": "^0.8.
|
|
22
|
-
"@stone-js/http-core": "^0.8.
|
|
23
|
-
"@stone-js/node-http-adapter": "^0.8.
|
|
24
|
-
"@stone-js/router": "^0.8.
|
|
25
|
-
"@stone-js/filesystem": "^0.8.
|
|
26
|
-
"@stone-js/core": "^0.8.
|
|
27
|
-
"@stone-js/use-react": "^0.8.
|
|
28
|
-
"@stone-js/browser-adapter": "^0.8.
|
|
21
|
+
"@stone-js/env": "^0.8.11",
|
|
22
|
+
"@stone-js/http-core": "^0.8.11",
|
|
23
|
+
"@stone-js/node-http-adapter": "^0.8.11",
|
|
24
|
+
"@stone-js/router": "^0.8.11",
|
|
25
|
+
"@stone-js/filesystem": "^0.8.11",
|
|
26
|
+
"@stone-js/core": "^0.8.11",
|
|
27
|
+
"@stone-js/use-react": "^0.8.11",
|
|
28
|
+
"@stone-js/browser-adapter": "^0.8.11",
|
|
29
29
|
"axios": "^1.7.9",
|
|
30
30
|
"react": "^19.0.0",
|
|
31
31
|
"react-dom": "^19.0.0"
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
35
35
|
"@babel/preset-env": "^7.26.9",
|
|
36
36
|
"@babel/preset-typescript": "^7.27.0",
|
|
37
|
-
"@stone-js/cli": "^0.8.
|
|
38
|
-
"@stone-js/testing": "^0.8.
|
|
37
|
+
"@stone-js/cli": "^0.8.11",
|
|
38
|
+
"@stone-js/testing": "^0.8.11",
|
|
39
39
|
"@types/axios": "^0.14.4",
|
|
40
40
|
"@types/node": "^24.0.7",
|
|
41
41
|
"@types/react": "^19.0.7",
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
"test:cvg": "stone test --coverage"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@stone-js/env": "^0.8.
|
|
22
|
-
"@stone-js/http-core": "^0.8.
|
|
23
|
-
"@stone-js/node-http-adapter": "^0.8.
|
|
24
|
-
"@stone-js/router": "^0.8.
|
|
25
|
-
"@stone-js/filesystem": "^0.8.
|
|
26
|
-
"@stone-js/core": "^0.8.
|
|
27
|
-
"@stone-js/use-react": "^0.8.
|
|
28
|
-
"@stone-js/browser-adapter": "^0.8.
|
|
21
|
+
"@stone-js/env": "^0.8.11",
|
|
22
|
+
"@stone-js/http-core": "^0.8.11",
|
|
23
|
+
"@stone-js/node-http-adapter": "^0.8.11",
|
|
24
|
+
"@stone-js/router": "^0.8.11",
|
|
25
|
+
"@stone-js/filesystem": "^0.8.11",
|
|
26
|
+
"@stone-js/core": "^0.8.11",
|
|
27
|
+
"@stone-js/use-react": "^0.8.11",
|
|
28
|
+
"@stone-js/browser-adapter": "^0.8.11",
|
|
29
29
|
"axios": "^1.7.9",
|
|
30
30
|
"dayjs": "^1.11.13",
|
|
31
31
|
"react": "^19.0.0",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
36
36
|
"@babel/preset-env": "^7.26.9",
|
|
37
37
|
"@babel/preset-typescript": "^7.27.0",
|
|
38
|
-
"@stone-js/cli": "^0.8.
|
|
39
|
-
"@stone-js/testing": "^0.8.
|
|
38
|
+
"@stone-js/cli": "^0.8.11",
|
|
39
|
+
"@stone-js/testing": "^0.8.11",
|
|
40
40
|
"@types/axios": "^0.14.4",
|
|
41
41
|
"@types/node": "^24.0.7",
|
|
42
42
|
"@types/react": "^19.0.7",
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@libsql/client": "^0.14.0",
|
|
25
|
-
"@stone-js/core": "^0.8.
|
|
26
|
-
"@stone-js/env": "^0.8.
|
|
27
|
-
"@stone-js/filesystem": "^0.8.
|
|
28
|
-
"@stone-js/http-core": "^0.8.
|
|
29
|
-
"@stone-js/node-cli-adapter": "^0.8.
|
|
30
|
-
"@stone-js/node-http-adapter": "^0.8.
|
|
31
|
-
"@stone-js/pipeline": "^0.8.
|
|
32
|
-
"@stone-js/router": "^0.8.
|
|
25
|
+
"@stone-js/core": "^0.8.11",
|
|
26
|
+
"@stone-js/env": "^0.8.11",
|
|
27
|
+
"@stone-js/filesystem": "^0.8.11",
|
|
28
|
+
"@stone-js/http-core": "^0.8.11",
|
|
29
|
+
"@stone-js/node-cli-adapter": "^0.8.11",
|
|
30
|
+
"@stone-js/node-http-adapter": "^0.8.11",
|
|
31
|
+
"@stone-js/pipeline": "^0.8.11",
|
|
32
|
+
"@stone-js/router": "^0.8.11",
|
|
33
33
|
"bcryptjs": "^3.0.2",
|
|
34
34
|
"drizzle-orm": "^0.45.2",
|
|
35
35
|
"jsonwebtoken": "^9.0.2"
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
39
39
|
"@babel/preset-env": "^7.26.9",
|
|
40
40
|
"@babel/preset-typescript": "^7.27.0",
|
|
41
|
-
"@stone-js/cli": "^0.8.
|
|
42
|
-
"@stone-js/testing": "^0.8.
|
|
41
|
+
"@stone-js/cli": "^0.8.11",
|
|
42
|
+
"@stone-js/testing": "^0.8.11",
|
|
43
43
|
"@types/jsonwebtoken": "^9.0.8",
|
|
44
44
|
"@types/node": "^24.0.3",
|
|
45
45
|
"@vitest/coverage-v8": "^3.0.9",
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@libsql/client": "^0.14.0",
|
|
25
|
-
"@stone-js/core": "^0.8.
|
|
26
|
-
"@stone-js/env": "^0.8.
|
|
27
|
-
"@stone-js/filesystem": "^0.8.
|
|
28
|
-
"@stone-js/http-core": "^0.8.
|
|
29
|
-
"@stone-js/node-cli-adapter": "^0.8.
|
|
30
|
-
"@stone-js/node-http-adapter": "^0.8.
|
|
31
|
-
"@stone-js/pipeline": "^0.8.
|
|
32
|
-
"@stone-js/router": "^0.8.
|
|
25
|
+
"@stone-js/core": "^0.8.11",
|
|
26
|
+
"@stone-js/env": "^0.8.11",
|
|
27
|
+
"@stone-js/filesystem": "^0.8.11",
|
|
28
|
+
"@stone-js/http-core": "^0.8.11",
|
|
29
|
+
"@stone-js/node-cli-adapter": "^0.8.11",
|
|
30
|
+
"@stone-js/node-http-adapter": "^0.8.11",
|
|
31
|
+
"@stone-js/pipeline": "^0.8.11",
|
|
32
|
+
"@stone-js/router": "^0.8.11",
|
|
33
33
|
"bcryptjs": "^3.0.2",
|
|
34
34
|
"drizzle-orm": "^0.45.2",
|
|
35
35
|
"jsonwebtoken": "^9.0.2"
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
39
39
|
"@babel/preset-env": "^7.26.9",
|
|
40
40
|
"@babel/preset-typescript": "^7.27.0",
|
|
41
|
-
"@stone-js/cli": "^0.8.
|
|
42
|
-
"@stone-js/testing": "^0.8.
|
|
41
|
+
"@stone-js/cli": "^0.8.11",
|
|
42
|
+
"@stone-js/testing": "^0.8.11",
|
|
43
43
|
"@types/jsonwebtoken": "^9.0.8",
|
|
44
44
|
"@types/node": "^24.0.3",
|
|
45
45
|
"@vitest/coverage-v8": "^3.0.9",
|
package/package.json
CHANGED
|
@@ -20,20 +20,20 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"react": "^19.0.0",
|
|
22
22
|
"react-dom": "^19.0.0",
|
|
23
|
-
"@stone-js/use-react": "^0.8.
|
|
24
|
-
"@stone-js/browser-adapter": "^0.8.
|
|
25
|
-
"@stone-js/pipeline": "^0.8.
|
|
26
|
-
"@stone-js/http-core": "^0.8.
|
|
27
|
-
"@stone-js/node-http-adapter": "^0.8.
|
|
28
|
-
"@stone-js/router": "^0.8.
|
|
29
|
-
"@stone-js/core": "^0.8.
|
|
23
|
+
"@stone-js/use-react": "^0.8.11",
|
|
24
|
+
"@stone-js/browser-adapter": "^0.8.11",
|
|
25
|
+
"@stone-js/pipeline": "^0.8.11",
|
|
26
|
+
"@stone-js/http-core": "^0.8.11",
|
|
27
|
+
"@stone-js/node-http-adapter": "^0.8.11",
|
|
28
|
+
"@stone-js/router": "^0.8.11",
|
|
29
|
+
"@stone-js/core": "^0.8.11"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
33
33
|
"@babel/preset-env": "^7.26.9",
|
|
34
34
|
"@babel/preset-typescript": "^7.27.0",
|
|
35
|
-
"@stone-js/cli": "^0.8.
|
|
36
|
-
"@stone-js/testing": "^0.8.
|
|
35
|
+
"@stone-js/cli": "^0.8.11",
|
|
36
|
+
"@stone-js/testing": "^0.8.11",
|
|
37
37
|
"@types/node": "^24.0.7",
|
|
38
38
|
"@types/react": "^19.0.7",
|
|
39
39
|
"@types/react-dom": "^19.0.3",
|
|
@@ -20,20 +20,20 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"react": "^19.0.0",
|
|
22
22
|
"react-dom": "^19.0.0",
|
|
23
|
-
"@stone-js/use-react": "^0.8.
|
|
24
|
-
"@stone-js/browser-adapter": "^0.8.
|
|
25
|
-
"@stone-js/pipeline": "^0.8.
|
|
26
|
-
"@stone-js/http-core": "^0.8.
|
|
27
|
-
"@stone-js/node-http-adapter": "^0.8.
|
|
28
|
-
"@stone-js/router": "^0.8.
|
|
29
|
-
"@stone-js/core": "^0.8.
|
|
23
|
+
"@stone-js/use-react": "^0.8.11",
|
|
24
|
+
"@stone-js/browser-adapter": "^0.8.11",
|
|
25
|
+
"@stone-js/pipeline": "^0.8.11",
|
|
26
|
+
"@stone-js/http-core": "^0.8.11",
|
|
27
|
+
"@stone-js/node-http-adapter": "^0.8.11",
|
|
28
|
+
"@stone-js/router": "^0.8.11",
|
|
29
|
+
"@stone-js/core": "^0.8.11"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
33
33
|
"@babel/preset-env": "^7.26.9",
|
|
34
34
|
"@babel/preset-typescript": "^7.27.0",
|
|
35
|
-
"@stone-js/cli": "^0.8.
|
|
36
|
-
"@stone-js/testing": "^0.8.
|
|
35
|
+
"@stone-js/cli": "^0.8.11",
|
|
36
|
+
"@stone-js/testing": "^0.8.11",
|
|
37
37
|
"@types/node": "^24.0.7",
|
|
38
38
|
"@types/react": "^19.0.7",
|
|
39
39
|
"@types/react-dom": "^19.0.3",
|
|
@@ -18,18 +18,18 @@
|
|
|
18
18
|
"test:cvg": "stone test --coverage"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@stone-js/pipeline": "^0.8.
|
|
22
|
-
"@stone-js/http-core": "^0.8.
|
|
23
|
-
"@stone-js/node-http-adapter": "^0.8.
|
|
24
|
-
"@stone-js/router": "^0.8.
|
|
25
|
-
"@stone-js/core": "^0.8.
|
|
21
|
+
"@stone-js/pipeline": "^0.8.11",
|
|
22
|
+
"@stone-js/http-core": "^0.8.11",
|
|
23
|
+
"@stone-js/node-http-adapter": "^0.8.11",
|
|
24
|
+
"@stone-js/router": "^0.8.11",
|
|
25
|
+
"@stone-js/core": "^0.8.11"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
29
29
|
"@babel/preset-env": "^7.26.9",
|
|
30
30
|
"@babel/preset-typescript": "^7.27.0",
|
|
31
|
-
"@stone-js/cli": "^0.8.
|
|
32
|
-
"@stone-js/testing": "^0.8.
|
|
31
|
+
"@stone-js/cli": "^0.8.11",
|
|
32
|
+
"@stone-js/testing": "^0.8.11",
|
|
33
33
|
"@types/node": "^24.0.7",
|
|
34
34
|
"@vitest/coverage-v8": "^3.0.9",
|
|
35
35
|
"vitest": "^3.0.9"
|
|
@@ -17,18 +17,18 @@
|
|
|
17
17
|
"test:cvg": "stone test --coverage"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@stone-js/pipeline": "^0.8.
|
|
21
|
-
"@stone-js/http-core": "^0.8.
|
|
22
|
-
"@stone-js/node-http-adapter": "^0.8.
|
|
23
|
-
"@stone-js/router": "^0.8.
|
|
24
|
-
"@stone-js/core": "^0.8.
|
|
20
|
+
"@stone-js/pipeline": "^0.8.11",
|
|
21
|
+
"@stone-js/http-core": "^0.8.11",
|
|
22
|
+
"@stone-js/node-http-adapter": "^0.8.11",
|
|
23
|
+
"@stone-js/router": "^0.8.11",
|
|
24
|
+
"@stone-js/core": "^0.8.11"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@babel/plugin-proposal-decorators": "^7.25.9",
|
|
28
28
|
"@babel/preset-env": "^7.26.9",
|
|
29
29
|
"@babel/preset-typescript": "^7.27.0",
|
|
30
|
-
"@stone-js/cli": "^0.8.
|
|
31
|
-
"@stone-js/testing": "^0.8.
|
|
30
|
+
"@stone-js/cli": "^0.8.11",
|
|
31
|
+
"@stone-js/testing": "^0.8.11",
|
|
32
32
|
"@types/node": "^24.0.7",
|
|
33
33
|
"@vitest/coverage-v8": "^3.0.9",
|
|
34
34
|
"vitest": "^3.0.9"
|