@common-stack/generate-plugin 6.0.2-alpha.1 → 6.0.2-alpha.2

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.2-alpha.2](https://github.com/cdmbase/common-stack/compare/v6.0.2-alpha.1...v6.0.2-alpha.2) (2024-08-22)
7
+
8
+ **Note:** Version bump only for package @common-stack/generate-plugin
9
+
6
10
  ## [6.0.2-alpha.1](https://github.com/cdmbase/common-stack/compare/v6.0.1-alpha.9...v6.0.2-alpha.1) (2024-08-22)
7
11
 
8
12
  **Note:** Version bump only for package @common-stack/generate-plugin
@@ -1,116 +1,116 @@
1
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
- "zen:watch": "zen watch -x"
59
- },
60
- "resolutions": {
61
- "apollo-upload-client": "^16.0.0",
62
- "extract-files": "^10.0.0",
63
- "html-to-text": "^8.0.0"
64
- },
65
- "dependencies": {
66
- "@adminide-stack/account-api-server": "7.2.6-alpha.13",
67
- "@adminide-stack/billing-api-server": "7.2.6-alpha.13",
68
- "@adminide-stack/core": "7.2.6-alpha.13",
69
- "@adminide-stack/extension-module-server": "7.2.6-alpha.13",
70
- "@adminide-stack/git-api-server": "7.2.6-alpha.13",
71
- "@adminide-stack/integration-api-server": "7.2.6-alpha.13",
72
- "@adminide-stack/marketplace-module-server": "7.2.6-alpha.13",
73
- "@adminide-stack/platform-server": "7.2.6-alpha.13",
74
- "@adminide-stack/project-mgmt-server": "7.2.6-alpha.13",
75
- "@adminide-stack/registry-api-server": "7.2.6-alpha.13",
76
- "@adminide-stack/user-auth0-server": "7.2.6-alpha.13",
77
- "@apollo/client": "^3.9.0",
78
- "@babel/runtime": "^7.20.1",
79
- "@container-stack/core": "5.1.2",
80
- "@container-stack/mailing-api": "5.1.2",
81
- "@container-stack/notification-api-core": "5.1.2",
82
- "@container-stack/notification-api-server": "5.1.2",
83
- "@container-stack/territory": "5.1.2",
84
- "@remix-run/node": "^2.8.1",
85
- "@sentry/node": "~7.24.2",
86
- "app-root-path": "^3.0.0",
87
- "body-parser": "^1.19.0",
88
- "cors": "^2.8.5",
89
- "dataloader": "^2.0.0",
90
- "dotenv": "^8.2.0",
91
- "dotenv-esm": "^16.0.3-4",
92
- "envalid": "~7.2.2",
93
- "esm": "^3.2.25",
94
- "express": "^4.17.1",
95
- "graphql-tools": "^9.0.0",
96
- "inversify": "^6.0.2",
97
- "ioredis": "^5.4.1",
98
- "isomorphic-fetch": "^2.2.1",
99
- "lodash": "^4.17.15",
100
- "react": "18.2.0",
101
- "rxjs": "^6.5.3",
102
- "rxjs-compat": "^6.5.3"
103
- },
104
- "devDependencies": {
105
- "cross-env": "^7.0.3",
106
- "pm2": "^5.2.2",
107
- "rimraf": "^3.0.2",
108
- "tsx": "^4.7.0"
109
- },
110
- "engines": {
111
- "vscode": "^1.52.1"
112
- },
113
- "typescript": {
114
- "definition": "dist/main.d.ts"
115
- }
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
+ "zen:watch": "zen watch -x"
59
+ },
60
+ "resolutions": {
61
+ "apollo-upload-client": "^16.0.0",
62
+ "extract-files": "^10.0.0",
63
+ "html-to-text": "^8.0.0"
64
+ },
65
+ "dependencies": {
66
+ "@adminide-stack/account-api-server": "7.2.6-alpha.13",
67
+ "@adminide-stack/billing-api-server": "7.2.6-alpha.13",
68
+ "@adminide-stack/core": "7.2.6-alpha.13",
69
+ "@adminide-stack/extension-module-server": "7.2.6-alpha.13",
70
+ "@adminide-stack/git-api-server": "7.2.6-alpha.13",
71
+ "@adminide-stack/integration-api-server": "7.2.6-alpha.13",
72
+ "@adminide-stack/marketplace-module-server": "7.2.6-alpha.13",
73
+ "@adminide-stack/platform-server": "7.2.6-alpha.13",
74
+ "@adminide-stack/project-mgmt-server": "7.2.6-alpha.13",
75
+ "@adminide-stack/registry-api-server": "7.2.6-alpha.13",
76
+ "@adminide-stack/user-auth0-server": "7.2.6-alpha.13",
77
+ "@apollo/client": "^3.9.0",
78
+ "@babel/runtime": "^7.20.1",
79
+ "@container-stack/core": "5.1.2",
80
+ "@container-stack/mailing-api": "5.1.2",
81
+ "@container-stack/notification-api-core": "5.1.2",
82
+ "@container-stack/notification-api-server": "5.1.2",
83
+ "@container-stack/territory": "5.1.2",
84
+ "@remix-run/node": "^2.8.1",
85
+ "@sentry/node": "~7.24.2",
86
+ "app-root-path": "^3.0.0",
87
+ "body-parser": "^1.19.0",
88
+ "cors": "^2.8.5",
89
+ "dataloader": "^2.0.0",
90
+ "dotenv": "^8.2.0",
91
+ "dotenv-esm": "^16.0.3-4",
92
+ "envalid": "~7.2.2",
93
+ "esm": "^3.2.25",
94
+ "express": "^4.17.1",
95
+ "graphql-tools": "^9.0.0",
96
+ "inversify": "^6.0.2",
97
+ "ioredis": "^5.4.1",
98
+ "isomorphic-fetch": "^2.2.1",
99
+ "lodash": "^4.17.15",
100
+ "react": "18.2.0",
101
+ "rxjs": "^6.5.3",
102
+ "rxjs-compat": "^6.5.3"
103
+ },
104
+ "devDependencies": {
105
+ "cross-env": "^7.0.3",
106
+ "pm2": "^5.2.2",
107
+ "rimraf": "^3.0.2",
108
+ "tsx": "^4.7.0"
109
+ },
110
+ "engines": {
111
+ "vscode": "^1.52.1"
112
+ },
113
+ "typescript": {
114
+ "definition": "dist/main.d.ts"
115
+ }
116
116
  }
@@ -1,49 +1,49 @@
1
1
  {
2
- "name": "browser-package",
3
- "version": "3.1.1-alpha.6",
4
- "description": "Sample core for higher packages to depend on",
5
- "license": "ISC",
6
- "author": "CDMBase LLC",
7
- "type": "module",
8
- "main": "lib/index.js",
9
- "module": "lib/index.js",
10
- "typings": "lib/index.d.ts",
11
- "scripts": {
12
- "build": "npm run build:clean && npm run build:lib",
13
- "build:clean": "rimraf lib",
14
- "build:lib": "rollup -c rollup.config.mjs",
15
- "build:lib:watch": "npm run build:lib -- --watch",
16
- "jest": "./node_modules/.bin/jest",
17
- "prepublish": "npm run build",
18
- "schema:download": "./node_modules/.bin/apollo-codegen download-schema http://localhost:8080/graphql --output schema.json ",
19
- "schema:generate": "./node_modules/.bin/apollo-codegen generate src/browser/graphql/**/*.gql --schema schema.json --target typescript --output src/browser/graphql/schema.ts",
20
- "test": "cross-env ENV_FILE=../../config/test/test.env jest",
21
- "test:debug": "npm test -- --runInBand",
22
- "test:watch": "npm test -- --watch",
23
- "watch": "npm run build:lib:watch"
24
- },
25
- "dependencies": {
26
- "envalid": "~7.2.2",
27
- "pluralize": "8.0.0",
28
- "react-csv": "^2.0.3"
29
- },
30
- "peerDependencies": {
31
- "@cdm-logger/client": "*",
32
- "@common-stack/client-react": "6.0.1-alpha.0",
33
- "@remix-run/react": "*",
34
- "antd": ">=5.1.6",
35
- "lodash": "*",
36
- "moment": "*",
37
- "react": "*",
38
- "react-redux": "*",
39
- "redux": ">=4.0.1",
40
- "redux-observable": "*",
41
- "rxjs": "*"
42
- },
43
- "publishConfig": {
44
- "access": "public"
45
- },
46
- "typescript": {
47
- "definition": "lib/index.d.ts"
48
- }
2
+ "name": "browser-package",
3
+ "version": "3.1.1-alpha.6",
4
+ "description": "Sample core for higher packages to depend on",
5
+ "license": "ISC",
6
+ "author": "CDMBase LLC",
7
+ "type": "module",
8
+ "main": "lib/index.js",
9
+ "module": "lib/index.js",
10
+ "typings": "lib/index.d.ts",
11
+ "scripts": {
12
+ "build": "npm run build:clean && npm run build:lib",
13
+ "build:clean": "rimraf lib",
14
+ "build:lib": "rollup -c rollup.config.mjs",
15
+ "build:lib:watch": "npm run build:lib -- --watch",
16
+ "jest": "./node_modules/.bin/jest",
17
+ "prepublish": "npm run build",
18
+ "schema:download": "./node_modules/.bin/apollo-codegen download-schema http://localhost:8080/graphql --output schema.json ",
19
+ "schema:generate": "./node_modules/.bin/apollo-codegen generate src/browser/graphql/**/*.gql --schema schema.json --target typescript --output src/browser/graphql/schema.ts",
20
+ "test": "cross-env ENV_FILE=../../config/test/test.env jest",
21
+ "test:debug": "npm test -- --runInBand",
22
+ "test:watch": "npm test -- --watch",
23
+ "watch": "npm run build:lib:watch"
24
+ },
25
+ "dependencies": {
26
+ "envalid": "~7.2.2",
27
+ "pluralize": "8.0.0",
28
+ "react-csv": "^2.0.3"
29
+ },
30
+ "peerDependencies": {
31
+ "@cdm-logger/client": "*",
32
+ "@common-stack/client-react": "6.0.2-alpha.1",
33
+ "@remix-run/react": "*",
34
+ "antd": ">=5.1.6",
35
+ "lodash": "*",
36
+ "moment": "*",
37
+ "react": "*",
38
+ "react-redux": "*",
39
+ "redux": ">=4.0.1",
40
+ "redux-observable": "*",
41
+ "rxjs": "*"
42
+ },
43
+ "publishConfig": {
44
+ "access": "public"
45
+ },
46
+ "typescript": {
47
+ "definition": "lib/index.d.ts"
48
+ }
49
49
  }
@@ -1,30 +1,30 @@
1
1
  {
2
- "name": "client-package",
3
- "version": "3.1.1-alpha.4",
4
- "description": "Sample core for higher packages to depend on",
5
- "license": "ISC",
6
- "author": "CDMBase LLC",
7
- "type": "module",
8
- "main": "lib/index.js",
9
- "module": "lib/index.js",
10
- "typings": "lib/index.d.ts",
11
- "scripts": {
12
- "build": "npm run build:clean && npm run build:lib",
13
- "build:clean": "rimraf lib",
14
- "build:lib": "rollup -c rollup.config.mjs",
15
- "build:lib:watch": "npm run build:lib -- --watch",
16
- "jest": "../../../node_modules/.bin/jest",
17
- "prepublish": "npm run build",
18
- "test": "cross-env ENV_FILE=../../../config/test/test.env yarn jest",
19
- "test:debug": "npm test -- --runInBand",
20
- "test:watch": "npm test -- --watch",
21
- "watch": "npm run build:lib:watch"
22
- },
23
- "dependencies": {},
24
- "peerDependencies": {
25
- "react": ">=16.12.0"
26
- },
27
- "typescript": {
28
- "definition": "lib/index.d.ts"
29
- }
2
+ "name": "client-package",
3
+ "version": "3.1.1-alpha.4",
4
+ "description": "Sample core for higher packages to depend on",
5
+ "license": "ISC",
6
+ "author": "CDMBase LLC",
7
+ "type": "module",
8
+ "main": "lib/index.js",
9
+ "module": "lib/index.js",
10
+ "typings": "lib/index.d.ts",
11
+ "scripts": {
12
+ "build": "npm run build:clean && npm run build:lib",
13
+ "build:clean": "rimraf lib",
14
+ "build:lib": "rollup -c rollup.config.mjs",
15
+ "build:lib:watch": "npm run build:lib -- --watch",
16
+ "jest": "../../../node_modules/.bin/jest",
17
+ "prepublish": "npm run build",
18
+ "test": "cross-env ENV_FILE=../../../config/test/test.env yarn jest",
19
+ "test:debug": "npm test -- --runInBand",
20
+ "test:watch": "npm test -- --watch",
21
+ "watch": "npm run build:lib:watch"
22
+ },
23
+ "dependencies": {},
24
+ "peerDependencies": {
25
+ "react": ">=16.12.0"
26
+ },
27
+ "typescript": {
28
+ "definition": "lib/index.d.ts"
29
+ }
30
30
  }
@@ -1,30 +1,30 @@
1
1
  {
2
- "name": "core-package",
3
- "version": "3.1.1-alpha.4",
4
- "description": "Workbench core for higher packages to depend on",
5
- "license": "ISC",
6
- "author": "CDMBase LLC",
7
- "type": "module",
8
- "main": "lib/index.js",
9
- "module": "lib/index.js",
10
- "typings": "lib/index.d.ts",
11
- "scripts": {
12
- "build": "npm run build:clean && npm run build:lib",
13
- "build:clean": "rimraf lib",
14
- "build:lib": "rollup -c rollup.config.mjs",
15
- "build:lib:watch": "npm run build:lib -- -w",
16
- "jest": "./node_modules/.bin/jest",
17
- "prepublishOnly": "npm run build",
18
- "test": "jest",
19
- "test:debug": "npm test -- --runInBand",
20
- "test:watch": "npm test -- --watch",
21
- "watch": "npm run build:lib:watch"
22
- },
23
- "dependencies": {},
24
- "publishConfig": {
25
- "access": "public"
26
- },
27
- "typescript": {
28
- "definition": "lib/index.d.ts"
29
- }
2
+ "name": "core-package",
3
+ "version": "3.1.1-alpha.4",
4
+ "description": "Workbench core for higher packages to depend on",
5
+ "license": "ISC",
6
+ "author": "CDMBase LLC",
7
+ "type": "module",
8
+ "main": "lib/index.js",
9
+ "module": "lib/index.js",
10
+ "typings": "lib/index.d.ts",
11
+ "scripts": {
12
+ "build": "npm run build:clean && npm run build:lib",
13
+ "build:clean": "rimraf lib",
14
+ "build:lib": "rollup -c rollup.config.mjs",
15
+ "build:lib:watch": "npm run build:lib -- -w",
16
+ "jest": "./node_modules/.bin/jest",
17
+ "prepublishOnly": "npm run build",
18
+ "test": "jest",
19
+ "test:debug": "npm test -- --runInBand",
20
+ "test:watch": "npm test -- --watch",
21
+ "watch": "npm run build:lib:watch"
22
+ },
23
+ "dependencies": {},
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
27
+ "typescript": {
28
+ "definition": "lib/index.d.ts"
29
+ }
30
30
  }
@@ -99,8 +99,8 @@
99
99
  },
100
100
  "devDependencies": {
101
101
  "@cdmbase/vite-plugin-i18next-loader": "^2.0.12",
102
- "@common-stack/frontend-stack-react": "6.0.1-alpha.0",
103
- "@common-stack/rollup-vite-utils": "6.0.1-alpha.0",
102
+ "@common-stack/frontend-stack-react": "6.0.2-alpha.1",
103
+ "@common-stack/rollup-vite-utils": "6.0.2-alpha.1",
104
104
  "@remix-run/dev": "^2.8.1",
105
105
  "@remix-run/serve": "^2.8.1",
106
106
  "cross-env": "^7.0.3",