cc-core-cli 1.0.128 → 1.0.130

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-core-cli",
3
- "version": "1.0.128",
3
+ "version": "1.0.130",
4
4
  "description": "Command Line Interface tool for generating project templates for the (Your Platform's Name) platform.",
5
5
  "main": "bin/index.js",
6
6
  "scripts": {
@@ -1,4 +1,4 @@
1
- FROM node:18.20.0-alpine3.18 as development
1
+ FROM node:22.14.0-alpine3.20 as development
2
2
 
3
3
  RUN apk update
4
4
  RUN apk add --no-cache build-base g++ cairo-dev jpeg-dev pango-dev giflib-dev
@@ -13,7 +13,7 @@ RUN npm run build
13
13
 
14
14
 
15
15
 
16
- FROM node:18.16.1-alpine3.18 as production
16
+ FROM node:22.14.0-alpine3.20 as production
17
17
 
18
18
  ARG NODE_ENV=production
19
19
  ENV NODE_ENV=${NODE_ENV}\
@@ -17,12 +17,15 @@
17
17
  "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
18
18
  },
19
19
  "dependencies": {
20
- "@shopstack/cc-core-lib": "^2.5.255"
20
+ "@shopstack/cc-core-lib": "^2.5.272"
21
21
  },
22
22
  "devDependencies": {
23
+ "@types/bcrypt": "^5.0.2",
23
24
  "@types/bull": "^3.14.4",
25
+ "@types/chroma-js": "^2.4.0",
24
26
  "@types/express": "^4.17.8",
25
27
  "@types/node": "^13.13.27",
28
+ "@types/numeral": "^2.0.2",
26
29
  "@types/supertest": "^2.0.10",
27
30
  "@typescript-eslint/eslint-plugin": "^6.1.0",
28
31
  "@typescript-eslint/parser": "^6.1.0",
@@ -34,6 +37,6 @@
34
37
  "ts-loader": "^6.2.1",
35
38
  "ts-node": "^10.9.1",
36
39
  "tsconfig-paths": "^3.9.0",
37
- "typescript": "^4.8.4"
40
+ "typescript": "^5.8.2"
38
41
  }
39
42
  }