@equinor/echo-cli 0.14.19-beta-4 → 0.14.19-beta-5

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.
Files changed (1) hide show
  1. package/package.json +125 -126
package/package.json CHANGED
@@ -1,126 +1,125 @@
1
- {
2
- "name": "@equinor/echo-cli",
3
- "version": "0.14.19-beta-4",
4
- "description": "Command line interface for Echo Apps",
5
- "main": "dist/index.js",
6
- "source": "src/test.js",
7
- "typings": "dist/index.d.ts",
8
- "type": "module",
9
- "repository": {
10
- "url": "git+https://github.com/equinor/EchoCli.git"
11
- },
12
- "scripts": {
13
- "echo-publish": "npm publish --access public",
14
- "echo-publish-beta": "npm publish --access public --tag beta",
15
- "echo-publish-next": "npm publish --access public --tag next",
16
- "echo-test": "npm ci & jest --watchAll",
17
- "echo-update": "echo-update",
18
- "echo-update-version": "echo-update -v",
19
- "echo-update-next": "echo-update -c",
20
- "echo-update-all": "echo-update -a",
21
- "test": "jest",
22
- "prebuild-cli": "npm --prefix ../echo-client run build -- --env=cli=true",
23
- "build": "tsc",
24
- "lint": "eslint --ext .js,.jsx,.ts,.tsx src --color",
25
- "build-cli": "npm run build",
26
- "cli-publish": "npm run build-cli",
27
- "postcli-publish": "npm run echo-publish"
28
- },
29
- "keywords": [],
30
- "author": "Echo Core",
31
- "license": "MIT",
32
- "module": "node",
33
- "bin": {
34
- "echo-create": "./lib/echo-create.js",
35
- "echo-build": "./lib/echo-build.js",
36
- "echo-manifest": "./lib/echo-manifest.js"
37
- },
38
- "files": [
39
- "lib",
40
- "templates",
41
- "client"
42
- ],
43
- "dependencies": {
44
- "@babel/core": "^7.24.7",
45
- "@babel/preset-env": "^7.24.7",
46
- "@babel/preset-react": "^7.24.7",
47
- "@babel/preset-typescript": "^7.24.7",
48
- "@equinor/echo-scripts": "^0.1.5",
49
- "@equinor/echo-update": "^1.3.2",
50
- "@oclif/command": "^1.8.36",
51
- "@oclif/plugin-plugins": "^5.3.3",
52
- "@qortal/rollup-plugin-web-worker-loader": "^1.6.5",
53
- "@rollup/plugin-babel": "^6.0.4",
54
- "@rollup/plugin-commonjs": "^26.0.1",
55
- "@rollup/plugin-json": "^6.1.0",
56
- "@rollup/plugin-node-resolve": "^15.2.3",
57
- "@rollup/plugin-url": "^8.0.2",
58
- "@svgr/rollup": "^8.1.0",
59
- "@svgr/webpack": "^8.1.0",
60
- "assert": "^2.1.0",
61
- "autoprefixer": "^10.4.19",
62
- "babel-loader": "^9.1.3",
63
- "babel-polyfill": "^6.26.0",
64
- "chalk": "^5.3.0",
65
- "css-loader": "^6.11.0",
66
- "dotenv-webpack": "^8.1.0",
67
- "elliptic": "^6.5.7",
68
- "execa": "^9.3.0",
69
- "express": "^4.19.2",
70
- "figlet": "^1.7.0",
71
- "file-loader": "^6.2.0",
72
- "html-webpack-plugin": "^5.6.0",
73
- "inquirer": "^9.3.2",
74
- "less-loader": "^12.2.0",
75
- "listr2": "^8.2.3",
76
- "ncp": "^2.0.0",
77
- "node-polyfill-webpack-plugin": "^4.0.0",
78
- "pem": "^1.14.8",
79
- "pkg-install": "^1.0.0",
80
- "postcss": "^8.4.39",
81
- "react": "^18.3.1",
82
- "replace-in-file-webpack-plugin": "^1.0.6",
83
- "rollup": "^4.18.0",
84
- "rollup-plugin-cleanup": "^3.2.1",
85
- "rollup-plugin-livereload": "^2.0.5",
86
- "rollup-plugin-node-polyfills": "^0.2.1",
87
- "rollup-plugin-postcss": "^4.0.2",
88
- "rollup-plugin-serve": "^1.1.1",
89
- "rollup-plugin-typescript2": "^0.36.0",
90
- "style-loader": "^4.0.0",
91
- "terser-webpack-plugin": "^5.3.10",
92
- "ts-loader": "^9.5.1",
93
- "typescript": "^5.5.3",
94
- "url-loader": "^4.1.1",
95
- "webpack": "^5.92.1",
96
- "webpack-bundle-analyzer": "^4.10.2",
97
- "webpack-dev-middleware": "^7.2.1",
98
- "webpack-dev-server": "^4.15.2",
99
- "webpack-hot-middleware": "^2.26.1",
100
- "webpack-merge": "^6.0.1",
101
- "webpackbar": "^6.0.1"
102
- },
103
- "devDependencies": {
104
- "@microsoft/microsoft-graph-types": "^2.40.0",
105
- "@types/express": "^4.17.21",
106
- "@types/jest": "^29.5.12",
107
- "@types/listr": "^0.14.9",
108
- "@types/node": "^20.14.9",
109
- "@types/pem": "^1.14.4",
110
- "@types/react": "^18.3.3",
111
- "@types/webpack-bundle-analyzer": "^4.7.0",
112
- "@types/webpack-dev-middleware": "^5.3.0",
113
- "@types/webpack-dev-server": "^4.7.2",
114
- "@types/webpack-hot-middleware": "^2.25.9",
115
- "@typescript-eslint/eslint-plugin": "^7.15.0",
116
- "@typescript-eslint/parser": "^7.15.0",
117
- "babel-jest": "^29.7.0",
118
- "eslint": "^8.57.0",
119
- "eslint-config-prettier": "^9.1.0",
120
- "eslint-plugin-prettier": "^5.1.3",
121
- "eslint-plugin-react": "^7.34.3",
122
- "eslint-plugin-react-hooks": "^4.6.2",
123
- "jest": "^29.7.0",
124
- "prettier": "^3.3.2"
125
- }
126
- }
1
+ {
2
+ "name": "@equinor/echo-cli",
3
+ "version": "0.14.19-beta-5",
4
+ "description": "Command line interface for Echo Apps",
5
+ "main": "dist/index.js",
6
+ "source": "src/test.js",
7
+ "typings": "dist/index.d.ts",
8
+ "type": "module",
9
+ "repository": {
10
+ "url": "git+https://github.com/equinor/EchoCli.git"
11
+ },
12
+ "scripts": {
13
+ "echo-publish": "npm publish --access public",
14
+ "echo-publish-beta": "npm publish --access public --tag beta",
15
+ "echo-publish-next": "npm publish --access public --tag next",
16
+ "echo-test": "npm ci & jest --watchAll",
17
+ "echo-update": "echo-update",
18
+ "echo-update-version": "echo-update -v",
19
+ "echo-update-next": "echo-update -c",
20
+ "echo-update-all": "echo-update -a",
21
+ "test": "jest",
22
+ "prebuild-cli": "npm --prefix ../echo-client run build -- --env=cli=true",
23
+ "build": "tsc",
24
+ "lint": "eslint --ext .js,.jsx,.ts,.tsx src --color",
25
+ "build-cli": "npm run build",
26
+ "cli-publish": "npm run build-cli",
27
+ "postcli-publish": "npm run echo-publish"
28
+ },
29
+ "keywords": [],
30
+ "author": "Echo Core",
31
+ "license": "MIT",
32
+ "module": "node",
33
+ "bin": {
34
+ "echo-create": "./lib/echo-create.js",
35
+ "echo-build": "./lib/echo-build.js",
36
+ "echo-manifest": "./lib/echo-manifest.js"
37
+ },
38
+ "files": [
39
+ "lib",
40
+ "templates",
41
+ "client"
42
+ ],
43
+ "dependencies": {
44
+ "@babel/core": "^7.25.2",
45
+ "@babel/preset-env": "^7.25.4",
46
+ "@babel/preset-react": "^7.24.7",
47
+ "@babel/preset-typescript": "^7.24.7",
48
+ "@equinor/echo-scripts": "^0.1.5",
49
+ "@equinor/echo-update": "^1.3.2",
50
+ "@oclif/command": "^1.8.36",
51
+ "@oclif/plugin-plugins": "^5.4.10",
52
+ "@qortal/rollup-plugin-web-worker-loader": "^1.6.5",
53
+ "@rollup/plugin-babel": "^6.0.4",
54
+ "@rollup/plugin-commonjs": "^26.0.1",
55
+ "@rollup/plugin-json": "^6.1.0",
56
+ "@rollup/plugin-node-resolve": "^15.3.0",
57
+ "@rollup/plugin-url": "^8.0.2",
58
+ "@svgr/rollup": "^8.1.0",
59
+ "@svgr/webpack": "^8.1.0",
60
+ "assert": "^2.1.0",
61
+ "autoprefixer": "^10.4.20",
62
+ "babel-loader": "^9.2.1",
63
+ "babel-polyfill": "^6.26.0",
64
+ "chalk": "^5.3.0",
65
+ "css-loader": "^6.11.0",
66
+ "dotenv-webpack": "^8.1.0",
67
+ "execa": "^9.4.0",
68
+ "express": "^4.21.0",
69
+ "figlet": "^1.7.0",
70
+ "file-loader": "^6.2.0",
71
+ "html-webpack-plugin": "^5.6.0",
72
+ "inquirer": "^9.3.2",
73
+ "less-loader": "^12.2.0",
74
+ "listr2": "^8.2.4",
75
+ "ncp": "^2.0.0",
76
+ "node-polyfill-webpack-plugin": "^4.0.0",
77
+ "pem": "^1.14.8",
78
+ "pkg-install": "^1.0.0",
79
+ "postcss": "^8.4.47",
80
+ "react": "^18.3.1",
81
+ "replace-in-file-webpack-plugin": "^1.0.6",
82
+ "rollup": "^4.22.5",
83
+ "rollup-plugin-cleanup": "^3.2.1",
84
+ "rollup-plugin-livereload": "^2.0.5",
85
+ "rollup-plugin-node-polyfills": "^0.2.1",
86
+ "rollup-plugin-postcss": "^4.0.2",
87
+ "rollup-plugin-serve": "^1.1.1",
88
+ "rollup-plugin-typescript2": "^0.36.0",
89
+ "style-loader": "^4.0.0",
90
+ "terser-webpack-plugin": "^5.3.10",
91
+ "ts-loader": "^9.5.1",
92
+ "typescript": "^5.6.2",
93
+ "url-loader": "^4.1.1",
94
+ "webpack": "^5.95.0",
95
+ "webpack-bundle-analyzer": "^4.10.2",
96
+ "webpack-dev-middleware": "^7.4.2",
97
+ "webpack-dev-server": "^4.15.2",
98
+ "webpack-hot-middleware": "^2.26.1",
99
+ "webpack-merge": "^6.0.1",
100
+ "webpackbar": "^6.0.1"
101
+ },
102
+ "devDependencies": {
103
+ "@microsoft/microsoft-graph-types": "^2.40.0",
104
+ "@types/express": "^4.17.21",
105
+ "@types/jest": "^29.5.13",
106
+ "@types/listr": "^0.14.9",
107
+ "@types/node": "^20.14.9",
108
+ "@types/pem": "^1.14.4",
109
+ "@types/react": "^18.3.10",
110
+ "@types/webpack-bundle-analyzer": "^4.7.0",
111
+ "@types/webpack-dev-middleware": "^5.3.0",
112
+ "@types/webpack-dev-server": "^4.7.2",
113
+ "@types/webpack-hot-middleware": "^2.25.9",
114
+ "@typescript-eslint/eslint-plugin": "^7.15.0",
115
+ "@typescript-eslint/parser": "^7.15.0",
116
+ "babel-jest": "^29.7.0",
117
+ "eslint": "^8.57.0",
118
+ "eslint-config-prettier": "^9.1.0",
119
+ "eslint-plugin-prettier": "^5.2.1",
120
+ "eslint-plugin-react": "^7.37.0",
121
+ "eslint-plugin-react-hooks": "^4.6.2",
122
+ "jest": "^29.7.0",
123
+ "prettier": "^3.3.3"
124
+ }
125
+ }