@genpact/genome.mfe.prework-app 1.0.0-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/package.json ADDED
@@ -0,0 +1,88 @@
1
+ {
2
+ "name": "@genpact/genome.mfe.prework-app",
3
+ "version": "1.0.0-alpha.2",
4
+ "license": "UNLICENSED",
5
+ "files": [
6
+ "dist/**/*"
7
+ ],
8
+ "scripts": {
9
+ "serve": "cross-env TAILWIND_MODE=watch vue-cli-service serve",
10
+ "serve:standalone": "cross-env TAILWIND_MODE=watch STANDALONE_SINGLE_SPA=true vue-cli-service serve --standalone",
11
+ "build": "cross-env vue-cli-service build",
12
+ "commit": "commit",
13
+ "release:poc": "standard-version --release-as patch --prerelease alpha",
14
+ "release:dev": "standard-version --prerelease beta",
15
+ "release:uat": "standard-version --prerelease rc",
16
+ "release:prod": "standard-version",
17
+ "test:unit": "vue-cli-service test:unit",
18
+ "lint": "vue-cli-service lint",
19
+ "preinstall": "npx only-allow pnpm",
20
+ "postinstall": "husky install"
21
+ },
22
+ "dependencies": {
23
+ "@vue/composition-api": "^1.0.5",
24
+ "autoprefixer": "^9",
25
+ "axios": "^0.25.0",
26
+ "core-js": "^3.15.2",
27
+ "moment": "^2.29.1",
28
+ "regenerator-runtime": "^0.13.9",
29
+ "single-spa-vue": "^2.4.1",
30
+ "tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.4",
31
+ "v-click-outside": "^3.1.2",
32
+ "vue": "^2.6.14",
33
+ "vue-feather-icons": "^5.1.0",
34
+ "vue-router": "^3.5.2",
35
+ "vuex": "^3.6.2"
36
+ },
37
+ "devDependencies": {
38
+ "@commitlint/cli": "^12.1.4",
39
+ "@commitlint/config-conventional": "^12.1.4",
40
+ "@commitlint/prompt-cli": "^12.1.4",
41
+ "@types/jest": "^26.0.23",
42
+ "@types/vue-feather-icons": "^5.0.2",
43
+ "@types/webpack-env": "^1.16.2",
44
+ "@typescript-eslint/eslint-plugin": "^4.28.1",
45
+ "@typescript-eslint/parser": "^4.28.1",
46
+ "@vue/cli-plugin-babel": "~4.5.13",
47
+ "@vue/cli-plugin-eslint": "~4.5.13",
48
+ "@vue/cli-plugin-router": "~4.5.13",
49
+ "@vue/cli-plugin-typescript": "~4.5.13",
50
+ "@vue/cli-plugin-unit-jest": "~4.5.13",
51
+ "@vue/cli-plugin-vuex": "~4.5.13",
52
+ "@vue/cli-service": "~4.5.13",
53
+ "@vue/eslint-config-airbnb": "^5.3.0",
54
+ "@vue/eslint-config-prettier": "^6.0.0",
55
+ "@vue/eslint-config-typescript": "^7.0.0",
56
+ "@vue/test-utils": "^1.2.1",
57
+ "autoprefixer": "^9",
58
+ "cross-env": "^7.0.3",
59
+ "eslint": "^7.29.0",
60
+ "eslint-plugin-prettier": "^3.4.0",
61
+ "eslint-plugin-vue": "^7.12.1",
62
+ "husky": "^7.0.0",
63
+ "lint-staged": "^11.0.0",
64
+ "postcss": "^7",
65
+ "prettier": "^2.3.2",
66
+ "semantic-release": "^19.0.2",
67
+ "standard-version": "^9.3.0",
68
+ "tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.4",
69
+ "typescript": "~4.3.5",
70
+ "vue-cli-plugin-single-spa": "~2.2.0",
71
+ "vue-template-compiler": "^2.6.14"
72
+ },
73
+ "lint-staged": {
74
+ "*.{js,jsx,vue,ts,tsx}": "vue-cli-service lint"
75
+ },
76
+ "release": {
77
+ "branches": [
78
+ {
79
+ "name": "master"
80
+ },
81
+ {
82
+ "name": "release/poc",
83
+ "channel": "release/poc",
84
+ "prerelease": "alpha"
85
+ }
86
+ ]
87
+ }
88
+ }