-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 3.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "xo-boutique",
"version": "1.0.0",
"description": "HungDz",
"main": "webpack.common.js",
"scripts": {
"dev": "npm run build -- --env.env=dev",
"build:prod": "npm run build -- --env.env=prod",
"build": "webpack",
"build:dev:bundleanalyzer": "npm run build -- --env.env=dev --env.addons=bundleanalyzer",
"build:prod:bundleanalyzer": "npm run build -- --env.env=prod --env.addons=bundleanalyzer",
"docs": "npx typedoc",
"test": "jest --detectOpenHandles",
"lint:js": "eslint --ext \".ts,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore",
"lint": "npm run lint:js && npm run lint:style"
},
"repository": {
"type": "git",
"url": "git@gitlab.com:xopify-themes/xo-boutique.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"_moduleAliases": {
"@components": "dist",
"@helpers": "dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/xopify-themes/xo-boutique/-/issues"
},
"homepage": "https://gitlab.com/xopify-themes/xo-boutique",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@babel/preset-env": "^7.5.5",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@shopify/theme-currency": "^4.1.1",
"@shopify/theme-predictive-search": "^4.1.1",
"@testing-library/jest-dom": "^5.11.9",
"@types/google.maps": "^3.44.2",
"@types/googlemaps": "^3.43.3",
"@types/jest": "^26.0.20",
"@types/swiper": "^5.4.2",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"@vue/compiler-sfc": "^3.1.2",
"autoprefixer": "^9.7.1",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^3.2.0",
"css-minimizer-webpack-plugin": "^1.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.12.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jsdoc": "^3.6.6",
"mini-css-extract-plugin": "^0.9.0",
"module-alias": "^2.2.2",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"replace-in-file-webpack-plugin": "^1.0.6",
"sass-loader": "^7.1.0",
"style-loader": "^1.0.0",
"stylelint": "^13.9.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-webpack-plugin": "^2.1.1",
"terser-webpack-plugin": "^2.2.1",
"ts-jest": "^26.5.0",
"ts-loader": "^7.0.5",
"typedoc": "^0.20.32",
"typescript": "^3.9.7",
"url-loader": "^2.1.0",
"vue-debounce-decorator": "^1.0.1",
"vue-loader": "^16.3.0",
"vue-style-loader": "^4.1.2",
"webpack": "^4.38.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^3.3.6",
"webpack-import-glob-loader": "^1.6.3",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"swiper": "^6.5.1",
"vue": "^3.1.2",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.1.2",
"vuex": "^3.6.2",
"vuex-module-decorators": "^1.0.1"
}
}