@zeedhi/teknisa-cli 1.54.0 → 1.57.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.
Files changed (91) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +5 -5
  3. package/bin/teknisa.js +117 -117
  4. package/package.json +2 -2
  5. package/src/create.js +118 -118
  6. package/src/generate.js +20 -20
  7. package/src/util/component/createEmptyComponent.js +145 -139
  8. package/src/util/component/createJest.js +19 -19
  9. package/src/util/component/createNpmignore.js +14 -14
  10. package/src/util/component/createPackage.js +52 -52
  11. package/src/util/component/createReadme.js +15 -15
  12. package/src/util/component/createRollup.js +15 -15
  13. package/src/util/component/createTsConfig.js +24 -24
  14. package/src/util/component/createTsLint.js +18 -18
  15. package/src/util/component/run.js +54 -54
  16. package/src/util/enhanceErrorMessages.js +13 -13
  17. package/src/util/project/editCliVersion.js +17 -17
  18. package/src/util/project/editPackageJson.js +19 -19
  19. package/src/util/project/module/.env.development +1 -1
  20. package/src/util/project/module/.env.production +1 -1
  21. package/src/util/project/module/.eslintrc.js +40 -40
  22. package/src/util/project/module/GruntFile.js +15 -15
  23. package/src/util/project/module/README.md +22 -22
  24. package/src/util/project/module/gitignore.template +21 -21
  25. package/src/util/project/module/package.json +69 -69
  26. package/src/util/project/module/postcss.config.js +5 -5
  27. package/src/util/project/module/public/index.html +16 -16
  28. package/src/util/project/module/public/metadata/notfound.json +14 -14
  29. package/src/util/project/module/public/metadata/unauthorized.json +14 -14
  30. package/src/util/project/module/public/robots.txt +2 -2
  31. package/src/util/project/module/src/App.vue +109 -109
  32. package/src/util/project/module/src/config/config.ts +15 -15
  33. package/src/util/project/module/src/config/devEnvironment.json +4 -4
  34. package/src/util/project/module/src/config/prodEnvironment.json +3 -3
  35. package/src/util/project/module/src/controllers/AppController.ts +5 -5
  36. package/src/util/project/module/src/controllers/index.ts +5 -5
  37. package/src/util/project/module/src/main.ts +13 -13
  38. package/src/util/project/module/src/plugins/index.ts +6 -6
  39. package/src/util/project/module/src/plugins/vuetify.ts +11 -11
  40. package/src/util/project/module/src/plugins/zeedhi.ts +50 -50
  41. package/src/util/project/module/src/registerServiceWorker.ts +32 -32
  42. package/src/util/project/module/src/shims-tsx.d.ts +13 -13
  43. package/src/util/project/module/src/shims-vue.d.ts +5 -5
  44. package/src/util/project/module/src/theme/index.ts +12 -12
  45. package/src/util/project/module/tsconfig.json +45 -45
  46. package/src/util/project/module/vue.config.js +74 -74
  47. package/src/util/project/product/.env.development +3 -3
  48. package/src/util/project/product/.env.production +2 -2
  49. package/src/util/project/product/.eslintrc.js +41 -41
  50. package/src/util/project/product/GruntFile.js +15 -15
  51. package/src/util/project/product/README.md +22 -22
  52. package/src/util/project/product/gitignore.template +21 -21
  53. package/src/util/project/product/package.json +69 -69
  54. package/src/util/project/product/postcss.config.js +5 -5
  55. package/src/util/project/product/public/assets/img/icons/safari-pinned-tab.svg +33 -33
  56. package/src/util/project/product/public/assets/img/image-not-found.svg +3 -3
  57. package/src/util/project/product/public/index.html +18 -18
  58. package/src/util/project/product/public/metadata/home.json +63 -63
  59. package/src/util/project/product/public/metadata/login.json +6 -6
  60. package/src/util/project/product/public/metadata/menu.json +28 -28
  61. package/src/util/project/product/public/metadata/notfound.json +14 -14
  62. package/src/util/project/product/public/robots.txt +2 -2
  63. package/src/util/project/product/src/App.vue +152 -152
  64. package/src/util/project/product/src/components/img-link/ImgLink.ts +17 -17
  65. package/src/util/project/product/src/components/img-link/ImgLink.vue +7 -7
  66. package/src/util/project/product/src/components/img-link/common/ImgLink.ts +32 -32
  67. package/src/util/project/product/src/components/index.ts +4 -4
  68. package/src/util/project/product/src/config/config.ts +20 -20
  69. package/src/util/project/product/src/config/devEnvironment.json +20 -20
  70. package/src/util/project/product/src/config/prodEnvironment.json +20 -20
  71. package/src/util/project/product/src/controllers/AppController.ts +47 -47
  72. package/src/util/project/product/src/controllers/LoginController.ts +17 -17
  73. package/src/util/project/product/src/controllers/index.ts +7 -7
  74. package/src/util/project/product/src/main.ts +18 -18
  75. package/src/util/project/product/src/plugins/index.ts +11 -6
  76. package/src/util/project/product/src/plugins/vuetify.ts +11 -11
  77. package/src/util/project/product/src/plugins/zeedhi.ts +69 -69
  78. package/src/util/project/product/src/registerServiceWorker.ts +32 -32
  79. package/src/util/project/product/src/router/index.ts +82 -82
  80. package/src/util/project/product/src/router/routes.ts +37 -37
  81. package/src/util/project/product/src/shims-tsx.d.ts +13 -13
  82. package/src/util/project/product/src/shims-vue.d.ts +5 -5
  83. package/src/util/project/product/src/store.ts +26 -26
  84. package/src/util/project/product/src/theme/index.ts +10 -10
  85. package/src/util/project/product/src/views/Microservice.ts +54 -54
  86. package/src/util/project/product/src/views/Microservice.vue +13 -13
  87. package/src/util/project/product/tsconfig.json +46 -46
  88. package/src/util/project/product/vue.config.js +74 -74
  89. package/src/util/project/renameGitIgnore.js +14 -14
  90. package/src/util/project/run.js +17 -17
  91. package/src/util/validateName.js +21 -21
@@ -1,46 +1,46 @@
1
- {
2
- "compilerOptions": {
3
- "target": "es6",
4
- "module": "esnext",
5
- "strict": true,
6
- "jsx": "preserve",
7
- "importHelpers": true,
8
- "moduleResolution": "node",
9
- "resolveJsonModule": true,
10
- "experimentalDecorators": true,
11
- "esModuleInterop": true,
12
- "allowSyntheticDefaultImports": true,
13
- "sourceMap": true,
14
- "baseUrl": ".",
15
- "typeRoots": [
16
- "./node_modules/@types",
17
- "./node_modules/vuetify/types"
18
- ],
19
- "types": [
20
- "webpack-env",
21
- "jest",
22
- "vuetify"
23
- ],
24
- "paths": {
25
- "@/*": [
26
- "src/*"
27
- ]
28
- },
29
- "lib": [
30
- "esnext",
31
- "dom",
32
- "dom.iterable",
33
- "scripthost"
34
- ]
35
- },
36
- "include": [
37
- "src/**/*.ts",
38
- "src/**/*.tsx",
39
- "src/**/*.vue",
40
- "tests/**/*.ts",
41
- "tests/**/*.tsx"
42
- ],
43
- "exclude": [
44
- "node_modules"
45
- ]
1
+ {
2
+ "compilerOptions": {
3
+ "target": "es6",
4
+ "module": "esnext",
5
+ "strict": true,
6
+ "jsx": "preserve",
7
+ "importHelpers": true,
8
+ "moduleResolution": "node",
9
+ "resolveJsonModule": true,
10
+ "experimentalDecorators": true,
11
+ "esModuleInterop": true,
12
+ "allowSyntheticDefaultImports": true,
13
+ "sourceMap": true,
14
+ "baseUrl": ".",
15
+ "typeRoots": [
16
+ "./node_modules/@types",
17
+ "./node_modules/vuetify/types"
18
+ ],
19
+ "types": [
20
+ "webpack-env",
21
+ "jest",
22
+ "vuetify"
23
+ ],
24
+ "paths": {
25
+ "@/*": [
26
+ "src/*"
27
+ ]
28
+ },
29
+ "lib": [
30
+ "esnext",
31
+ "dom",
32
+ "dom.iterable",
33
+ "scripthost"
34
+ ]
35
+ },
36
+ "include": [
37
+ "src/**/*.ts",
38
+ "src/**/*.tsx",
39
+ "src/**/*.vue",
40
+ "tests/**/*.ts",
41
+ "tests/**/*.tsx"
42
+ ],
43
+ "exclude": [
44
+ "node_modules"
45
+ ]
46
46
  }
@@ -1,74 +1,74 @@
1
- module.exports = {
2
- filenameHashing: true,
3
- productionSourceMap: process.env.VUE_APP_DEBUG_SOURCEMAP === 'TRUE' ? true : false,
4
- assetsDir: './assets',
5
- publicPath: process.env.VUE_APP_PUBLIC_PATH,
6
- devServer: {
7
- port: process.env.VUE_APP_DEV_SERVER_PORT
8
- },
9
- chainWebpack: (config) => {
10
- config.resolve.symlinks(false);
11
- /*remove hash from images*/
12
- config.module
13
- .rule('images')
14
- .test(/\.(png|jpe?g|gif)(\?.*)?$/)
15
- .use('url-loader')
16
- .loader('url-loader')
17
- .options({
18
- name : 'assets/img/[name].[ext]'
19
- });
20
- },
21
- runtimeCompiler: true,
22
- configureWebpack: {
23
- module: {
24
- rules: [
25
- {
26
- test: /\.js$/,
27
- loader: 'babel-loader',
28
- exclude: /node_modules/,
29
- options: {
30
- plugins: [
31
- ['@babel/plugin-proposal-decorators', { legacy: true }],
32
- '@babel/plugin-proposal-class-properties',
33
- ]
34
- }
35
- },
36
- ]
37
- },
38
- optimization: {
39
- splitChunks: {
40
- chunks: 'all',
41
- maxAsyncRequests: 5,
42
- maxInitialRequests: Infinity,
43
- minSize: 20000,
44
- name: true,
45
- cacheGroups: {
46
- vendor: {
47
- test: /[\\/]node_modules[\\/]/,
48
- name(module) {
49
- let packageName = module.context.match(
50
- /[\\/]node_modules[\\/](.*?)([\\/]|$)/
51
- );
52
- if (packageName[1] === '@zeedhi') {
53
- packageName = module.context.match(
54
- /[\\/]node_modules[\\/](.*?)[\\/](.*?)([\\/]|$)/
55
- );
56
- return `npm.${packageName[1].replace('@', '')}.${
57
- packageName[2]
58
- }`;
59
- } else {
60
- return `npm.${packageName[1].replace('@', '')}`;
61
- }
62
- },
63
- },
64
- styles: {
65
- test: /\.css$/,
66
- name: 'styles',
67
- chunks: 'all',
68
- enforce: true,
69
- },
70
- },
71
- },
72
- },
73
- },
74
- };
1
+ module.exports = {
2
+ filenameHashing: true,
3
+ productionSourceMap: process.env.VUE_APP_DEBUG_SOURCEMAP === 'TRUE' ? true : false,
4
+ assetsDir: './assets',
5
+ publicPath: process.env.VUE_APP_PUBLIC_PATH,
6
+ devServer: {
7
+ port: process.env.VUE_APP_DEV_SERVER_PORT
8
+ },
9
+ chainWebpack: (config) => {
10
+ config.resolve.symlinks(false);
11
+ /*remove hash from images*/
12
+ config.module
13
+ .rule('images')
14
+ .test(/\.(png|jpe?g|gif)(\?.*)?$/)
15
+ .use('url-loader')
16
+ .loader('url-loader')
17
+ .options({
18
+ name : 'assets/img/[name].[ext]'
19
+ });
20
+ },
21
+ runtimeCompiler: true,
22
+ configureWebpack: {
23
+ module: {
24
+ rules: [
25
+ {
26
+ test: /\.js$/,
27
+ loader: 'babel-loader',
28
+ exclude: /node_modules/,
29
+ options: {
30
+ plugins: [
31
+ ['@babel/plugin-proposal-decorators', { legacy: true }],
32
+ '@babel/plugin-proposal-class-properties',
33
+ ]
34
+ }
35
+ },
36
+ ]
37
+ },
38
+ optimization: {
39
+ splitChunks: {
40
+ chunks: 'all',
41
+ maxAsyncRequests: 5,
42
+ maxInitialRequests: Infinity,
43
+ minSize: 20000,
44
+ name: true,
45
+ cacheGroups: {
46
+ vendor: {
47
+ test: /[\\/]node_modules[\\/]/,
48
+ name(module) {
49
+ let packageName = module.context.match(
50
+ /[\\/]node_modules[\\/](.*?)([\\/]|$)/
51
+ );
52
+ if (packageName[1] === '@zeedhi') {
53
+ packageName = module.context.match(
54
+ /[\\/]node_modules[\\/](.*?)[\\/](.*?)([\\/]|$)/
55
+ );
56
+ return `npm.${packageName[1].replace('@', '')}.${
57
+ packageName[2]
58
+ }`;
59
+ } else {
60
+ return `npm.${packageName[1].replace('@', '')}`;
61
+ }
62
+ },
63
+ },
64
+ styles: {
65
+ test: /\.css$/,
66
+ name: 'styles',
67
+ chunks: 'all',
68
+ enforce: true,
69
+ },
70
+ },
71
+ },
72
+ },
73
+ },
74
+ };
@@ -1,4 +1,4 @@
1
- VUE_APP_PUBLIC_PATH=/
2
- VUE_APP_DEV_SERVER_PORT=8080
3
- VUE_APP_META_CONTENT_SECURITY_POLICY=
1
+ VUE_APP_PUBLIC_PATH=/
2
+ VUE_APP_DEV_SERVER_PORT=8080
3
+ VUE_APP_META_CONTENT_SECURITY_POLICY=
4
4
  VUE_APP_UPGRADE_INSECURE_REQUESTS=
@@ -1,3 +1,3 @@
1
- VUE_APP_PUBLIC_PATH=/
2
- VUE_APP_META_CONTENT_SECURITY_POLICY=<>VUE_APP_META_CONTENT_SECURITY_POLICY<>
1
+ VUE_APP_PUBLIC_PATH=/
2
+ VUE_APP_META_CONTENT_SECURITY_POLICY=<>VUE_APP_META_CONTENT_SECURITY_POLICY<>
3
3
  VUE_APP_UPGRADE_INSECURE_REQUESTS=<>VUE_APP_UPGRADE_INSECURE_REQUESTS<>
@@ -1,41 +1,41 @@
1
- module.exports = {
2
- root: true,
3
- env: {
4
- browser: true,
5
- es6: true,
6
- node: true,
7
- },
8
- ignorePatterns: ['node_modules/', '**/coverage/*', '**/dist/*', '**/types/*', '**/__mocks__/*', '**/*.d.ts', '**/*.js'],
9
- parser: 'vue-eslint-parser',
10
- parserOptions: {
11
- parser: '@typescript-eslint/parser',
12
- extraFileExtensions: ['.vue'],
13
- project: './tsconfig.json',
14
- },
15
- plugins: [
16
- '@typescript-eslint',
17
- ],
18
- extends: [
19
- 'airbnb-typescript/base',
20
- ],
21
- rules: {
22
- // maximum line length
23
- 'max-len': ['error', { code: 125, tabWidth: 2 }],
24
- // disallow console.log, allow console.warn and console.error
25
- 'no-console': ['error', { allow: ['warn', 'error'] }],
26
- // allow functions to be used before their definition
27
- '@typescript-eslint/no-use-before-define': ['error', { functions: false }],
28
- // don't check classes are exported using default when there is only one export
29
- 'import/prefer-default-export': 'off',
30
- // allow changes in properties of parameters
31
- 'no-param-reassign': ['error', { props: false }],
32
- // allow circular import references,
33
- 'import/no-cycle': 'off',
34
- // allow class methos without this
35
- 'class-methods-use-this': 'off',
36
- // ignore error caused by monorepo and path aliases
37
- 'import/no-unresolved': 'off',
38
- // ignore enforcement of consistent linebreak style
39
- 'linebreak-style': 0,
40
- },
41
- };
1
+ module.exports = {
2
+ root: true,
3
+ env: {
4
+ browser: true,
5
+ es6: true,
6
+ node: true,
7
+ },
8
+ ignorePatterns: ['node_modules/', '**/coverage/*', '**/dist/*', '**/types/*', '**/__mocks__/*', '**/*.d.ts', '**/*.js'],
9
+ parser: 'vue-eslint-parser',
10
+ parserOptions: {
11
+ parser: '@typescript-eslint/parser',
12
+ extraFileExtensions: ['.vue'],
13
+ project: './tsconfig.json',
14
+ },
15
+ plugins: [
16
+ '@typescript-eslint',
17
+ ],
18
+ extends: [
19
+ 'airbnb-typescript/base',
20
+ ],
21
+ rules: {
22
+ // maximum line length
23
+ 'max-len': ['error', { code: 125, tabWidth: 2 }],
24
+ // disallow console.log, allow console.warn and console.error
25
+ 'no-console': ['error', { allow: ['warn', 'error'] }],
26
+ // allow functions to be used before their definition
27
+ '@typescript-eslint/no-use-before-define': ['error', { functions: false }],
28
+ // don't check classes are exported using default when there is only one export
29
+ 'import/prefer-default-export': 'off',
30
+ // allow changes in properties of parameters
31
+ 'no-param-reassign': ['error', { props: false }],
32
+ // allow circular import references,
33
+ 'import/no-cycle': 'off',
34
+ // allow class methos without this
35
+ 'class-methods-use-this': 'off',
36
+ // ignore error caused by monorepo and path aliases
37
+ 'import/no-unresolved': 'off',
38
+ // ignore enforcement of consistent linebreak style
39
+ 'linebreak-style': 0,
40
+ },
41
+ };
@@ -1,15 +1,15 @@
1
- module.exports = function(grunt){
2
- grunt.initConfig({
3
- zhIdGenerator: {
4
- options: {
5
- jsonPath: ['../'],
6
- menuPath: ["../menu.json"],
7
- replaceIds: false
8
- }
9
- },
10
- });
11
-
12
- grunt.loadNpmTasks('grunt-zh-id-generator');
13
-
14
- grunt.registerTask('default', ['zhIdGenerator']);
15
- };
1
+ module.exports = function(grunt){
2
+ grunt.initConfig({
3
+ zhIdGenerator: {
4
+ options: {
5
+ jsonPath: ['../'],
6
+ menuPath: ["../menu.json"],
7
+ replaceIds: false
8
+ }
9
+ },
10
+ });
11
+
12
+ grunt.loadNpmTasks('grunt-zh-id-generator');
13
+
14
+ grunt.registerTask('default', ['zhIdGenerator']);
15
+ };
@@ -1,22 +1,22 @@
1
- ## Project setup
2
- ```
3
- npm install
4
- ```
5
-
6
- ### Compiles and hot-reloads for development
7
- ```
8
- npm run serve
9
- ```
10
-
11
- ### Compiles and minifies for production
12
- ```
13
- npm run build
14
- ```
15
-
16
- ### Lints and fixes files
17
- ```
18
- npm run lint
19
- ```
20
-
21
- ### Customize configuration
22
- See [Configuration Reference](https://cli.vuejs.org/config/).
1
+ ## Project setup
2
+ ```
3
+ npm install
4
+ ```
5
+
6
+ ### Compiles and hot-reloads for development
7
+ ```
8
+ npm run serve
9
+ ```
10
+
11
+ ### Compiles and minifies for production
12
+ ```
13
+ npm run build
14
+ ```
15
+
16
+ ### Lints and fixes files
17
+ ```
18
+ npm run lint
19
+ ```
20
+
21
+ ### Customize configuration
22
+ See [Configuration Reference](https://cli.vuejs.org/config/).
@@ -1,21 +1,21 @@
1
- .DS_Store
2
- node_modules
3
- /dist
4
-
5
- # local env files
6
- .env.local
7
- .env.*.local
8
-
9
- # Log files
10
- npm-debug.log*
11
- yarn-debug.log*
12
- yarn-error.log*
13
-
14
- # Editor directories and files
15
- .idea
16
- .vscode
17
- *.suo
18
- *.ntvs*
19
- *.njsproj
20
- *.sln
21
- *.sw?
1
+ .DS_Store
2
+ node_modules
3
+ /dist
4
+
5
+ # local env files
6
+ .env.local
7
+ .env.*.local
8
+
9
+ # Log files
10
+ npm-debug.log*
11
+ yarn-debug.log*
12
+ yarn-error.log*
13
+
14
+ # Editor directories and files
15
+ .idea
16
+ .vscode
17
+ *.suo
18
+ *.ntvs*
19
+ *.njsproj
20
+ *.sln
21
+ *.sw?
@@ -1,69 +1,69 @@
1
- {
2
- "version": "0.1.0",
3
- "private": true,
4
- "scripts": {
5
- "serve": "vue-cli-service serve",
6
- "build": "vue-cli-service build",
7
- "lint": "vue-cli-service lint"
8
- },
9
- "dependencies": {
10
- "@mdi/font": "^6.5.95",
11
- "@types/execa": "^2.0.0",
12
- "@types/jest": "^26.0.19",
13
- "@types/lodash.merge": "^4.6.6",
14
- "@typescript-eslint/eslint-plugin": "^4.11.1",
15
- "@typescript-eslint/parser": "^4.11.1",
16
- "@vue/cli-plugin-eslint": "^4.5.9",
17
- "@vue/cli-plugin-pwa": "^4.5.9",
18
- "@vue/cli-plugin-typescript": "^4.5.9",
19
- "@vue/cli-plugin-unit-jest": "^4.5.9",
20
- "@vue/cli-service": "^4.5.9",
21
- "@vue/test-utils": "^1.1.2",
22
- "@zeedhi/common": "*",
23
- "@zeedhi/core": "*",
24
- "@zeedhi/vue": "*",
25
- "@zeedhi/vuetify": "*",
26
- "@zeedhi/teknisa-components-common": "*",
27
- "@zeedhi/teknisa-components-vuetify": "*",
28
- "@zeedhi/tek-lib": "*",
29
- "eslint": "^7.16.0",
30
- "eslint-config-airbnb-typescript": "^12.0.0",
31
- "eslint-plugin-import": "2.22.1",
32
- "eslint-plugin-vue": "^7.4.0",
33
- "execa": "^5.0.0",
34
- "fs": "^0.0.2",
35
- "fs-extra": "^9.0.1",
36
- "register-service-worker": "^1.7.2",
37
- "roboto-fontface": "^0.10.0",
38
- "sass": "^1.32.8",
39
- "sass-loader": "^10.1.1",
40
- "ts-jest": "^26.4.4",
41
- "typescript": "^3.9.7",
42
- "vue": "^2.6.12",
43
- "vue-class-component": "^7.2.6",
44
- "vue-property-decorator": "^9.1.2",
45
- "vue-router": "^3.4.9",
46
- "vue-runtime-helpers": "^1.1.2",
47
- "vue-template-compiler": "^2.6.12",
48
- "vuetify": "^2.4.0",
49
- "vuex": "^3.6.0"
50
- },
51
- "devDependencies": {
52
- "@babel/plugin-proposal-class-properties": "^7.14.5",
53
- "@babel/plugin-proposal-decorators": "^7.14.5",
54
- "grunt": "~0.4.0",
55
- "grunt-zh-environment-builder": "git+ssh://git@192.168.122.56/zeedhi/grunt-zh-environment-builder.git",
56
- "grunt-zh-id-generator": "git+ssh://git@192.168.122.56/zeedhi/grunt-zh-id-generator.git"
57
- },
58
- "gitHooks": {
59
- "pre-commit": "lint-staged"
60
- },
61
- "lint-staged": {
62
- "*.{js,jsx,vue,ts,tsx}": [
63
- "vue-cli-service lint",
64
- "git add"
65
- ]
66
- },
67
- "name": "teknisa",
68
- "description": "Powered by Zeedhi"
69
- }
1
+ {
2
+ "version": "0.1.0",
3
+ "private": true,
4
+ "scripts": {
5
+ "serve": "vue-cli-service serve",
6
+ "build": "vue-cli-service build",
7
+ "lint": "vue-cli-service lint"
8
+ },
9
+ "dependencies": {
10
+ "@mdi/font": "^6.5.95",
11
+ "@types/execa": "^2.0.0",
12
+ "@types/jest": "^26.0.19",
13
+ "@types/lodash.merge": "^4.6.6",
14
+ "@typescript-eslint/eslint-plugin": "^4.11.1",
15
+ "@typescript-eslint/parser": "^4.11.1",
16
+ "@vue/cli-plugin-eslint": "^4.5.9",
17
+ "@vue/cli-plugin-pwa": "^4.5.9",
18
+ "@vue/cli-plugin-typescript": "^4.5.9",
19
+ "@vue/cli-plugin-unit-jest": "^4.5.9",
20
+ "@vue/cli-service": "^4.5.9",
21
+ "@vue/test-utils": "^1.1.2",
22
+ "@zeedhi/common": "*",
23
+ "@zeedhi/core": "*",
24
+ "@zeedhi/vue": "*",
25
+ "@zeedhi/vuetify": "*",
26
+ "@zeedhi/teknisa-components-common": "*",
27
+ "@zeedhi/teknisa-components-vuetify": "*",
28
+ "@zeedhi/tek-lib": "*",
29
+ "eslint": "^7.16.0",
30
+ "eslint-config-airbnb-typescript": "^12.0.0",
31
+ "eslint-plugin-import": "2.22.1",
32
+ "eslint-plugin-vue": "^7.4.0",
33
+ "execa": "^5.0.0",
34
+ "fs": "^0.0.2",
35
+ "fs-extra": "^9.0.1",
36
+ "register-service-worker": "^1.7.2",
37
+ "roboto-fontface": "^0.10.0",
38
+ "sass": "^1.32.8",
39
+ "sass-loader": "^10.1.1",
40
+ "ts-jest": "^26.4.4",
41
+ "typescript": "^3.9.7",
42
+ "vue": "^2.6.12",
43
+ "vue-class-component": "^7.2.6",
44
+ "vue-property-decorator": "^9.1.2",
45
+ "vue-router": "^3.4.9",
46
+ "vue-runtime-helpers": "^1.1.2",
47
+ "vue-template-compiler": "^2.6.12",
48
+ "vuetify": "^2.4.0",
49
+ "vuex": "^3.6.0"
50
+ },
51
+ "devDependencies": {
52
+ "@babel/plugin-proposal-class-properties": "^7.14.5",
53
+ "@babel/plugin-proposal-decorators": "^7.14.5",
54
+ "grunt": "~0.4.0",
55
+ "grunt-zh-environment-builder": "git+ssh://git@192.168.122.56/zeedhi/grunt-zh-environment-builder.git",
56
+ "grunt-zh-id-generator": "git+ssh://git@192.168.122.56/zeedhi/grunt-zh-id-generator.git"
57
+ },
58
+ "gitHooks": {
59
+ "pre-commit": "lint-staged"
60
+ },
61
+ "lint-staged": {
62
+ "*.{js,jsx,vue,ts,tsx}": [
63
+ "vue-cli-service lint",
64
+ "git add"
65
+ ]
66
+ },
67
+ "name": "teknisa",
68
+ "description": "Powered by Zeedhi"
69
+ }
@@ -1,5 +1,5 @@
1
- module.exports = {
2
- plugins: {
3
- autoprefixer: {}
4
- }
5
- }
1
+ module.exports = {
2
+ plugins: {
3
+ autoprefixer: {}
4
+ }
5
+ }