@dbos-inc/create 1.14.4-preview → 1.14.5-preview
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/package.json +1 -1
- package/templates/hello/eslint.config.js +26 -0
- package/templates/hello/package-lock.json +8684 -1157
- package/templates/hello/package.json +3 -2
- package/templates/hello-prisma/eslint.config.js +26 -0
- package/templates/hello-prisma/package-lock.json +1198 -634
- package/templates/hello-prisma/package.json +3 -2
- package/templates/hello-prisma/tsconfig.json +1 -1
- package/templates/hello-typeorm/eslint.config.js +26 -0
- package/templates/hello-typeorm/package-lock.json +8713 -1275
- package/templates/hello-typeorm/package.json +3 -2
- package/templates/hello-typeorm/tsconfig.json +1 -1
- package/templates/hello/.eslintignore +0 -4
- package/templates/hello/.eslintrc +0 -19
- package/templates/hello-prisma/.eslintignore +0 -5
- package/templates/hello-prisma/.eslintrc +0 -19
- package/templates/hello-typeorm/.eslintignore +0 -4
- package/templates/hello-typeorm/.eslintrc +0 -19
|
@@ -15,12 +15,13 @@
|
|
|
15
15
|
"@dbos-inc/eslint-plugin": "^0.0.6",
|
|
16
16
|
"@types/jest": "^29.5.12",
|
|
17
17
|
"@types/supertest": "^6.0.2",
|
|
18
|
-
"eslint": "^
|
|
18
|
+
"eslint": "^9.4.0",
|
|
19
19
|
"jest": "^29.7.0",
|
|
20
20
|
"nodemon": "^3.1.0",
|
|
21
21
|
"supertest": "^7.0.0",
|
|
22
22
|
"ts-jest": "^29.1.2",
|
|
23
|
-
"typescript": "^5.4.5"
|
|
23
|
+
"typescript": "^5.4.5",
|
|
24
|
+
"typescript-eslint": "^8.0.0-alpha.30"
|
|
24
25
|
},
|
|
25
26
|
"dependencies": {
|
|
26
27
|
"@dbos-inc/dbos-sdk": "file:../../../..",
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"root": true,
|
|
3
|
-
"extends": [
|
|
4
|
-
"plugin:@dbos-inc/dbosRecommendedConfig"
|
|
5
|
-
],
|
|
6
|
-
"plugins": [
|
|
7
|
-
"@dbos-inc"
|
|
8
|
-
],
|
|
9
|
-
"env": {
|
|
10
|
-
"node": true,
|
|
11
|
-
"es6": true
|
|
12
|
-
},
|
|
13
|
-
"rules": {
|
|
14
|
-
},
|
|
15
|
-
"parser": "@typescript-eslint/parser",
|
|
16
|
-
"parserOptions": {
|
|
17
|
-
"project": "./tsconfig.json"
|
|
18
|
-
}
|
|
19
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"root": true,
|
|
3
|
-
"extends": [
|
|
4
|
-
"plugin:@dbos-inc/dbosRecommendedConfig"
|
|
5
|
-
],
|
|
6
|
-
"plugins": [
|
|
7
|
-
"@dbos-inc"
|
|
8
|
-
],
|
|
9
|
-
"env": {
|
|
10
|
-
"node": true,
|
|
11
|
-
"es6": true
|
|
12
|
-
},
|
|
13
|
-
"rules": {
|
|
14
|
-
},
|
|
15
|
-
"parser": "@typescript-eslint/parser",
|
|
16
|
-
"parserOptions": {
|
|
17
|
-
"project": "./tsconfig.json"
|
|
18
|
-
}
|
|
19
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"root": true,
|
|
3
|
-
"extends": [
|
|
4
|
-
"plugin:@dbos-inc/dbosRecommendedConfig"
|
|
5
|
-
],
|
|
6
|
-
"plugins": [
|
|
7
|
-
"@dbos-inc"
|
|
8
|
-
],
|
|
9
|
-
"env": {
|
|
10
|
-
"node": true,
|
|
11
|
-
"es6": true
|
|
12
|
-
},
|
|
13
|
-
"rules": {
|
|
14
|
-
},
|
|
15
|
-
"parser": "@typescript-eslint/parser",
|
|
16
|
-
"parserOptions": {
|
|
17
|
-
"project": "./tsconfig.json"
|
|
18
|
-
}
|
|
19
|
-
}
|