@goodgamestudios/cxf-webshop 6.19.0-qa.2 → 6.20.0-qa.0

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@goodgamestudios/cxf-webshop",
3
3
  "description": "WebShop CXF Module",
4
- "version": "6.19.0-qa.2",
4
+ "version": "6.20.0-qa.0",
5
5
  "keywords": [],
6
6
  "license": "UNLICENSED",
7
7
  "repository": {
@@ -12,18 +12,19 @@
12
12
  "access": "public"
13
13
  },
14
14
  "scripts": {
15
- "start": "webpack-dev-server --config webpack.bdd.js",
16
- "build": "webpack --config webpack.prod.js",
15
+ "start": "node esbuild.serve.js",
16
+ "build": "node esbuild.build.js",
17
+ "build:qa": "cross-env STAGE=qa npm run build",
18
+ "build:live": "cross-env STAGE=live npm run build",
17
19
  "lint": "tslint './src/**/*.ts'",
18
20
  "lint:fix": "npm run lint -- --fix",
19
21
  "test:unit": "jest test/*",
20
22
  "test": "npm run test:unit && npm run test:e2e",
21
23
  "commit": "git-cz",
22
- "build:qa": "cross-env STAGE=qa npm run build",
23
- "build:live": "cross-env ANALYZE_BUNDLE=false STAGE=live npm run build",
24
24
  "------------------BDD-----------------": "",
25
- "test:e2e": "npm start & wait-on http://localhost:1101 && npm run bdd:test",
25
+ "test:e2e": "npm-run-all --parallel start bdd:test-stop",
26
26
  "bdd:test": "jest bdd/*",
27
+ "bdd:test-stop": "npm run bdd:test && pkill -f node",
27
28
  "------------------DEPLOY--------------": "",
28
29
  "release": "semantic-release",
29
30
  "deploy:dev": "npm run build:qa && npm publish --tag qa --access public",
@@ -33,16 +34,16 @@
33
34
  "main": "dist/webshop-cxf.js",
34
35
  "author": "Igor Babkin <ibabkin@goodgamestudios.com>",
35
36
  "dependencies": {
37
+ "@goodgamestudios/cxf-events": "^1.21.0",
36
38
  "@goodgamestudios/cxf-ready": "^1.0.5",
37
39
  "@goodgamestudios/game-alias": "^0.2.11",
38
- "debug": "^4.3.4",
40
+ "debug": "^4.3.3",
39
41
  "readuz": "^1.0.1",
40
42
  "uuid": "^8.3.0"
41
43
  },
42
44
  "devDependencies": {
43
- "@commitlint/cli": "^9.1.2",
44
- "@commitlint/config-conventional": "^9.1.2",
45
- "@goodgamestudios/cxf-events": "^1.21.0",
45
+ "@commitlint/cli": "^17.0.3",
46
+ "@commitlint/config-conventional": "^17.0.3",
46
47
  "@goodgamestudios/cxf-runtime": "^0.3.2",
47
48
  "@semantic-release/changelog": "^5.0.1",
48
49
  "@semantic-release/commit-analyzer": "^8.0.1",
@@ -55,30 +56,20 @@
55
56
  "@types/puppeteer": "^5.4.5",
56
57
  "@types/uniqid": "^4.1.3",
57
58
  "@types/uuid": "^8.3.0",
58
- "awesome-typescript-loader": "^5.2.1",
59
- "clean-webpack-plugin": "^3.0.0",
60
59
  "cross-env": "^5.2.0",
61
60
  "cz-conventional-changelog": "3.2.0",
61
+ "esbuild": "^0.14.49",
62
62
  "eventemitter3": "^4.0.0",
63
- "html-webpack-plugin": "^3.2.0",
64
- "http-server": "^0.11.1",
65
- "husky": "^1.1.4",
66
63
  "jest": "^26.6.3",
67
64
  "lint-staged": "^10.2.12",
68
65
  "npm-run-all": "^4.1.5",
69
66
  "puppeteer": "^13.4.1",
70
67
  "semantic-release": "^17.1.1",
68
+ "simple-git-hooks": "^2.8.0",
71
69
  "ts-jest": "^26.5.6",
70
+ "ts-loader": "^8.4.0",
72
71
  "tslint": "^5.18.0",
73
- "typescript": "^3.9",
74
- "wait-on": "^5.2.0",
75
- "webpack": "^4.41.0",
76
- "webpack-bundle-analyzer": "^3.3.2",
77
- "webpack-cli": "^3.3.8",
78
- "webpack-dev-server": "^3.1.10",
79
- "webpack-merge": "^4.2.2",
80
- "webpack-notifier": "^1.8.0",
81
- "yargs": "^16.0.3"
72
+ "typescript": "^3.9"
82
73
  },
83
74
  "commitlint": {
84
75
  "extends": [
@@ -92,12 +83,6 @@
92
83
  ]
93
84
  }
94
85
  },
95
- "husky": {
96
- "hooks": {
97
- "pre-commit": "lint-staged",
98
- "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
99
- }
100
- },
101
86
  "release": {
102
87
  "branches": [
103
88
  {
@@ -124,5 +109,9 @@
124
109
  "commitizen": {
125
110
  "path": "./node_modules/cz-conventional-changelog"
126
111
  }
112
+ },
113
+ "simple-git-hooks": {
114
+ "pre-commit": "npx lint-staged",
115
+ "commit-msg": "npx commitlint --edit $1"
127
116
  }
128
117
  }