@common-stack/generate-plugin 6.0.6-alpha.79 → 6.0.6-alpha.80
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [6.0.6-alpha.80](https://github.com/cdmbase/common-stack/compare/v6.0.6-alpha.79...v6.0.6-alpha.80) (2024-11-07)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @common-stack/generate-plugin
|
|
9
|
+
|
|
6
10
|
## [6.0.6-alpha.79](https://github.com/cdmbase/common-stack/compare/v6.0.6-alpha.78...v6.0.6-alpha.79) (2024-11-05)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @common-stack/generate-plugin
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sample-stack-backend-server",
|
|
3
|
+
"version": "3.1.1-alpha.5",
|
|
4
|
+
"private": true,
|
|
5
|
+
"description": "Starter kit for apollo server using webpack and typescript",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"apollo",
|
|
8
|
+
"apollo-server",
|
|
9
|
+
"backend",
|
|
10
|
+
"express",
|
|
11
|
+
"graphiql",
|
|
12
|
+
"graphql",
|
|
13
|
+
"typescript",
|
|
14
|
+
"webpack"
|
|
15
|
+
],
|
|
16
|
+
"homepage": "https://github.com/cdmbase/fullstack-pro#readme",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/cdmbase/fullstack-pro/issues"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/cdmbase/fullstack-pro.git"
|
|
23
|
+
},
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"author": "CDMBase LLC",
|
|
26
|
+
"main": "dist/index.js",
|
|
27
|
+
"typings": "dist/main.d.ts",
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
|
|
30
|
+
"build:clean": "rimraf dist .awcache",
|
|
31
|
+
"build:dev": "cross-env NODE_ENV=development ENV_FILE=../../config/development/dev.env webpack --config webpack.config.js",
|
|
32
|
+
"db:migrate": "knex -- migrate:latest --cwd . --knexfile ./knexfile.js",
|
|
33
|
+
"db:migrate:rollback": "knex -- migrate:rollback --cwd . --knexfile ./knexfile.js",
|
|
34
|
+
"db:seed": "yarn db:migrate && knex -- seed:run --cwd . --knexfile ./knexfile.js",
|
|
35
|
+
"docker:build": "yarn build && docker build . -t $npm_package_name:$npm_package_version",
|
|
36
|
+
"docker:build:debug": "yarn build:debug && docker build . -t $npm_package_name:$npm_package_version",
|
|
37
|
+
"docker:run": "docker run --env-file ../../config/staging/docker-staging.env -p 8080:8080 -it $npm_package_name:$npm_package_version",
|
|
38
|
+
"docker:run:debug": "cross-env NODE_ENV=development docker run --env-file ../../config/staging/docker-staging.env -p 8080:8080 -it $npm_package_name:$npm_package_version",
|
|
39
|
+
"proddb:migrate": "NODE_ENV=production yarn db:migrate",
|
|
40
|
+
"proddb:migrate:rollback": "NODE_ENV=production yarn db:migrate:rollback",
|
|
41
|
+
"proddb:seed": "NODE_ENV=production yarn db:seed",
|
|
42
|
+
"prepublish": "yarn build:clean",
|
|
43
|
+
"stagedb:migrate": "cross-env ENV_FILE=../../config/test/test.env NODE_ENV=test yarn db:migrate",
|
|
44
|
+
"stagedb:migrate:rollback": "cross-env ENV_FILE=../../config/test/test.env NODE_ENV=test yarn db:migrate:rollback",
|
|
45
|
+
"stagedb:seed": "cross-env ENV_FILE=../../config/test/test.env NODE_ENV=test yarn db:seed",
|
|
46
|
+
"start": "cross-env NODE_ENV=production tsx dist/index.js",
|
|
47
|
+
"start:dev": "cross-env NODE_ENV=development ENV_FILE=../../config/development/dev.env tsx watch dist/index.js",
|
|
48
|
+
"start:staging": "cross-env NODE_ENV=staging ENV_FILE=../../config/staging/staging.env tsx dist/index.js",
|
|
49
|
+
"start:test": "cross-env NODE_ENV=test ENV_FILE=../../config/test/test.env tsx dist/index.js",
|
|
50
|
+
"test": "jest",
|
|
51
|
+
"test:notify": "yarn test:watch -- --notify",
|
|
52
|
+
"test:watch": "npm test -- --watch",
|
|
53
|
+
"preupver": "npm test",
|
|
54
|
+
"upver": "standard-version",
|
|
55
|
+
"watch": "cross-env NODE_ENV=development ENV_FILE=../../config/development/dev.env yarn build:dev && yarn start:dev",
|
|
56
|
+
"watch:staging": "cross-env NODE_ENV=test ENV_FILE=../../config/staging/staging.env yarn build && yarn start:stage",
|
|
57
|
+
"watch:test": "cross-env NODE_ENV=test ENV_FILE=../../config/test/test.env yarn build:test && yarn start:test"
|
|
58
|
+
},
|
|
59
|
+
"resolutions": {
|
|
60
|
+
"html-to-text": "^8.0.0"
|
|
61
|
+
},
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@apollo/datasource-rest": "^6.3.0",
|
|
64
|
+
"@apollo/server": "^4.10.4",
|
|
65
|
+
"@apollo/server-plugin-response-cache": "^4.1.3",
|
|
66
|
+
"@apollo/utils.keyvadapter": "^3.1.0",
|
|
67
|
+
"@casl/ability": "^4.1.5",
|
|
68
|
+
"@cdm-logger/client": "^9.0.3",
|
|
69
|
+
"@cdm-logger/server": "^9.0.3",
|
|
70
|
+
"@cdmbase/graphql-type-uri": "^3.0.0",
|
|
71
|
+
"@common-stack/cache-api-server": "link:../../packages-modules/cache-api/server",
|
|
72
|
+
"@common-stack/client-core": "link:../common-client-core",
|
|
73
|
+
"@common-stack/core": "link:../common-core",
|
|
74
|
+
"@common-stack/server-core": "link:../common-server-core",
|
|
75
|
+
"@common-stack/store-mongo": "link:../common-store-mongo",
|
|
76
|
+
"@graphql-tools/links": "~9.0.1",
|
|
77
|
+
"@graphql-tools/schema": "~10.0.6",
|
|
78
|
+
"@graphql-tools/stitch": "~9.2.10",
|
|
79
|
+
"@graphql-tools/utils": "~10.5.4",
|
|
80
|
+
"@graphql-tools/wrap": "~10.0.5",
|
|
81
|
+
"@remix-run/node": "~2.10.1",
|
|
82
|
+
"@keyv/redis": "2.8.4",
|
|
83
|
+
"@sentry/node": "~7.24.2",
|
|
84
|
+
"@sentry/profiling-node": "^8.25.0",
|
|
85
|
+
"apollo-errors": "^1.9.0",
|
|
86
|
+
"body-parser": "^1.19.0",
|
|
87
|
+
"cors": "^2.8.5",
|
|
88
|
+
"dataloader": "^2.0.0",
|
|
89
|
+
"dotenv": "^8.2.0",
|
|
90
|
+
"dotenv-esm": "^16.0.3-4",
|
|
91
|
+
"envalid": "~7.2.2",
|
|
92
|
+
"express": "^4.17.1",
|
|
93
|
+
"graphql": "^16.0.0",
|
|
94
|
+
"graphql-bigint": "^1.0.0",
|
|
95
|
+
"graphql-iso-date": "^3.6.1",
|
|
96
|
+
"graphql-middleware": "^6.1.33",
|
|
97
|
+
"graphql-nats-subscriptions": "^1.5.0",
|
|
98
|
+
"graphql-playground-middleware-express": "^1.7.3",
|
|
99
|
+
"graphql-shield": "^7.3.5",
|
|
100
|
+
"graphql-subscriptions": "^2.0.0",
|
|
101
|
+
"graphql-tools": "~9.0.0",
|
|
102
|
+
"graphql-type-json": "^0.3.1",
|
|
103
|
+
"graphql-ws": "^5.11.2",
|
|
104
|
+
"inversify": "^6.0.2",
|
|
105
|
+
"ioredis": "^5.4.1",
|
|
106
|
+
"isomorphic-fetch": "^2.2.1",
|
|
107
|
+
"moleculer": "^0.14.2",
|
|
108
|
+
"mongoose": "^6.3.3",
|
|
109
|
+
"mongoose-autopopulate": "^1.1.0",
|
|
110
|
+
"mongoose-execution-time": "^1.1.0",
|
|
111
|
+
"morgan": "^1.9.1",
|
|
112
|
+
"nats": "^1.3.2",
|
|
113
|
+
"redux": "^5.0.1",
|
|
114
|
+
"reflect-metadata": "^0.1.13",
|
|
115
|
+
"subscriptions-transport-ws": "^0.11.0",
|
|
116
|
+
"universal-cookie-express": "^4.0.1",
|
|
117
|
+
"ws": "^8.11.0",
|
|
118
|
+
"@apollo/client": "^3.9.0",
|
|
119
|
+
"@babel/runtime": "^7.20.1",
|
|
120
|
+
"@common-stack/server-stack": "link:../../../../../common-server-stack",
|
|
121
|
+
"lodash": "^4.17.15",
|
|
122
|
+
"react": "18.2.0",
|
|
123
|
+
"rxjs": "^6.5.3",
|
|
124
|
+
"rxjs-compat": "^6.5.3"
|
|
125
|
+
},
|
|
126
|
+
"devDependencies": {
|
|
127
|
+
"cross-env": "^7.0.3",
|
|
128
|
+
"esbuild-loader": "^4.2.2",
|
|
129
|
+
"pm2": "^5.2.2",
|
|
130
|
+
"rimraf": "^3.0.2",
|
|
131
|
+
"tsx": "^4.7.0"
|
|
132
|
+
},
|
|
133
|
+
"typescript": {
|
|
134
|
+
"definition": "dist/main.d.ts"
|
|
135
|
+
}
|
|
136
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sample-stack-backend-server",
|
|
3
|
+
"version": "3.1.1-alpha.5",
|
|
4
|
+
"private": true,
|
|
5
|
+
"description": "Starter kit for apollo server using webpack and typescript",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"apollo",
|
|
8
|
+
"apollo-server",
|
|
9
|
+
"backend",
|
|
10
|
+
"express",
|
|
11
|
+
"graphiql",
|
|
12
|
+
"graphql",
|
|
13
|
+
"typescript",
|
|
14
|
+
"webpack"
|
|
15
|
+
],
|
|
16
|
+
"homepage": "https://github.com/cdmbase/fullstack-pro#readme",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/cdmbase/fullstack-pro/issues"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/cdmbase/fullstack-pro.git"
|
|
23
|
+
},
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"author": "CDMBase LLC",
|
|
26
|
+
"main": "dist/index.js",
|
|
27
|
+
"typings": "dist/main.d.ts",
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
|
|
30
|
+
"build:clean": "rimraf dist .awcache",
|
|
31
|
+
"build:dev": "cross-env NODE_ENV=development ENV_FILE=../../config/development/dev.env webpack --config webpack.config.js",
|
|
32
|
+
"db:migrate": "knex -- migrate:latest --cwd . --knexfile ./knexfile.js",
|
|
33
|
+
"db:migrate:rollback": "knex -- migrate:rollback --cwd . --knexfile ./knexfile.js",
|
|
34
|
+
"db:seed": "yarn db:migrate && knex -- seed:run --cwd . --knexfile ./knexfile.js",
|
|
35
|
+
"docker:build": "yarn build && docker build . -t $npm_package_name:$npm_package_version",
|
|
36
|
+
"docker:build:debug": "yarn build:debug && docker build . -t $npm_package_name:$npm_package_version",
|
|
37
|
+
"docker:run": "docker run --env-file ../../config/staging/docker-staging.env -p 8080:8080 -it $npm_package_name:$npm_package_version",
|
|
38
|
+
"docker:run:debug": "cross-env NODE_ENV=development docker run --env-file ../../config/staging/docker-staging.env -p 8080:8080 -it $npm_package_name:$npm_package_version",
|
|
39
|
+
"proddb:migrate": "NODE_ENV=production yarn db:migrate",
|
|
40
|
+
"proddb:migrate:rollback": "NODE_ENV=production yarn db:migrate:rollback",
|
|
41
|
+
"proddb:seed": "NODE_ENV=production yarn db:seed",
|
|
42
|
+
"prepublish": "yarn build:clean",
|
|
43
|
+
"stagedb:migrate": "cross-env ENV_FILE=../../config/test/test.env NODE_ENV=test yarn db:migrate",
|
|
44
|
+
"stagedb:migrate:rollback": "cross-env ENV_FILE=../../config/test/test.env NODE_ENV=test yarn db:migrate:rollback",
|
|
45
|
+
"stagedb:seed": "cross-env ENV_FILE=../../config/test/test.env NODE_ENV=test yarn db:seed",
|
|
46
|
+
"start": "cross-env NODE_ENV=production tsx dist/index.js",
|
|
47
|
+
"start:dev": "cross-env NODE_ENV=development ENV_FILE=../../config/development/dev.env tsx watch dist/index.js",
|
|
48
|
+
"start:staging": "cross-env NODE_ENV=staging ENV_FILE=../../config/staging/staging.env tsx dist/index.js",
|
|
49
|
+
"start:test": "cross-env NODE_ENV=test ENV_FILE=../../config/test/test.env tsx dist/index.js",
|
|
50
|
+
"test": "jest",
|
|
51
|
+
"test:notify": "yarn test:watch -- --notify",
|
|
52
|
+
"test:watch": "npm test -- --watch",
|
|
53
|
+
"preupver": "npm test",
|
|
54
|
+
"upver": "standard-version",
|
|
55
|
+
"watch": "cross-env NODE_ENV=development ENV_FILE=../../config/development/dev.env yarn build:dev && yarn start:dev",
|
|
56
|
+
"watch:staging": "cross-env NODE_ENV=test ENV_FILE=../../config/staging/staging.env yarn build && yarn start:stage",
|
|
57
|
+
"watch:test": "cross-env NODE_ENV=test ENV_FILE=../../config/test/test.env yarn build:test && yarn start:test"
|
|
58
|
+
},
|
|
59
|
+
"resolutions": {
|
|
60
|
+
"html-to-text": "^8.0.0"
|
|
61
|
+
},
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@apollo/client": "^3.9.0",
|
|
64
|
+
"@cdm-logger/client": "^9.0.3",
|
|
65
|
+
"@cdm-logger/server": "^9.0.3",
|
|
66
|
+
"@common-stack/client-core": "link:../common-client-core",
|
|
67
|
+
"@common-stack/client-react": "link:../common-client-react",
|
|
68
|
+
"@common-stack/components-pro": "link:../common-components-pro",
|
|
69
|
+
"@common-stack/core": "link:../common-core",
|
|
70
|
+
"@common-stack/remix-router-redux": "link:../remix-router-redux",
|
|
71
|
+
"@common-stack/cache-api-server": "link:../../packages-modules/cache-api/server",
|
|
72
|
+
"@common-stack/server-core": "link:../common-server-core",
|
|
73
|
+
"@reduxjs/toolkit": "^2.2.6",
|
|
74
|
+
"@remix-run/express": "~2.10.1",
|
|
75
|
+
"@remix-run/node": "~2.10.1",
|
|
76
|
+
"@remix-run/react": "~2.10.1",
|
|
77
|
+
"@sentry/browser": "~5.11.2",
|
|
78
|
+
"cors": "^2.8.5",
|
|
79
|
+
"cross-fetch": "^4.0.0",
|
|
80
|
+
"dotenv": "^8.2.0",
|
|
81
|
+
"envalid": "~7.2.2",
|
|
82
|
+
"express": "^4.18.2",
|
|
83
|
+
"graphql": "^16.0.0",
|
|
84
|
+
"graphql-tag": "^2.11.0",
|
|
85
|
+
"graphql-ws": "^5.11.2",
|
|
86
|
+
"i18next": "^23.10.1",
|
|
87
|
+
"i18next-browser-languagedetector": "^8.0.0",
|
|
88
|
+
"i18next-fs-backend": "^2.3.1",
|
|
89
|
+
"i18next-http-backend": "^2.5.2",
|
|
90
|
+
"inversify": "^6.0.2",
|
|
91
|
+
"ioredis": "^5.4.1",
|
|
92
|
+
"isbot": "^4.1.0",
|
|
93
|
+
"isomorphic-fetch": "^2.2.1",
|
|
94
|
+
"prop-types": "^15.8.1",
|
|
95
|
+
"react": "18.2.0",
|
|
96
|
+
"react-dom": "18.2.0",
|
|
97
|
+
"react-i18next": "^14.1.0",
|
|
98
|
+
"react-redux": "^9.1.1",
|
|
99
|
+
"redux-observable": "^1.2.0",
|
|
100
|
+
"remix-island": "^0.2.0",
|
|
101
|
+
"redux-persist": "^6.0.0",
|
|
102
|
+
"redux-persist-transform-filter": "^0.0.20",
|
|
103
|
+
"reflect-metadata": "^0.1.13",
|
|
104
|
+
"remix-i18next": "~6.1.0",
|
|
105
|
+
"serialize-javascript": "^6.0.0",
|
|
106
|
+
"ts-deepmerge": "^7.0.0",
|
|
107
|
+
"ts-invariant": "^0.10.3",
|
|
108
|
+
"lodash": "^4.17.15",
|
|
109
|
+
"rxjs": "^6.5.3",
|
|
110
|
+
"rxjs-compat": "^6.5.3"
|
|
111
|
+
},
|
|
112
|
+
"devDependencies": {
|
|
113
|
+
"cross-env": "^7.0.3",
|
|
114
|
+
"esbuild-loader": "^4.2.2",
|
|
115
|
+
"pm2": "^5.2.2",
|
|
116
|
+
"rimraf": "^3.0.2",
|
|
117
|
+
"tsx": "^4.7.0"
|
|
118
|
+
},
|
|
119
|
+
"typescript": {
|
|
120
|
+
"definition": "dist/main.d.ts"
|
|
121
|
+
}
|
|
122
|
+
}
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
"@babel/register": "^7.18.9",
|
|
148
148
|
"@babel/runtime": "^7.20.1",
|
|
149
149
|
"@common-stack/env-list-loader": "6.0.6-alpha.50",
|
|
150
|
-
"@common-stack/generate-plugin": "6.0.6-alpha.
|
|
150
|
+
"@common-stack/generate-plugin": "6.0.6-alpha.79",
|
|
151
151
|
"@common-stack/rollup-vite-utils": "6.0.6-alpha.78",
|
|
152
152
|
"@emotion/babel-plugin": "^11.11.0",
|
|
153
153
|
"@graphql-codegen/add": "^5.0.2",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@common-stack/generate-plugin",
|
|
3
|
-
"version": "6.0.6-alpha.
|
|
3
|
+
"version": "6.0.6-alpha.80",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./lib/index.mjs",
|
|
6
6
|
"typings": "./lib/index.d.ts",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"watch": "yarn build:lib:watch"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@common-stack/rollup-vite-utils": "6.0.6-alpha.
|
|
20
|
+
"@common-stack/rollup-vite-utils": "6.0.6-alpha.80",
|
|
21
21
|
"tslib": "^2.3.0"
|
|
22
22
|
},
|
|
23
23
|
"publishConfig": {
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
},
|
|
26
26
|
"executors": "./executors.json",
|
|
27
27
|
"generators": "./generators.json",
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "05a39fe9b88c5274c49654cfaae8348856f87af4"
|
|
29
29
|
}
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
"@babel/register": "^7.18.9",
|
|
148
148
|
"@babel/runtime": "^7.20.1",
|
|
149
149
|
"@common-stack/env-list-loader": "6.0.6-alpha.50",
|
|
150
|
-
"@common-stack/generate-plugin": "6.0.6-alpha.
|
|
150
|
+
"@common-stack/generate-plugin": "6.0.6-alpha.79",
|
|
151
151
|
"@common-stack/rollup-vite-utils": "6.0.6-alpha.78",
|
|
152
152
|
"@emotion/babel-plugin": "^11.11.0",
|
|
153
153
|
"@graphql-codegen/add": "^5.0.2",
|
|
@@ -268,6 +268,7 @@
|
|
|
268
268
|
"jest-css-modules-transform": "^4.4.2",
|
|
269
269
|
"jest-dom": "^4.0.0",
|
|
270
270
|
"jest-junit": "^14.0.1",
|
|
271
|
+
"jest-environment-jsdom": "^29.3.0",
|
|
271
272
|
"jest-matcher-utils": "^29.2.2",
|
|
272
273
|
"jest-raw-loader": "^1.0.1",
|
|
273
274
|
"jest-transform-graphql": "^2.1.0",
|