forked from swellstores/origin-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.4 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
107
{
"name": "swell-origin-theme",
"version": "2.0.16",
"description": "Origin PWA theme/starter for Swell ecommerce platform",
"author": "Swell",
"homepage": "https://www.swell.is/",
"repository": {
"type": "git",
"url": "https://github.com/swellstores/origin-theme/"
},
"license": "MIT",
"private": true,
"engines": {
"node": "16.20",
"npm": ">=8.19.4"
},
"dependencies": {
"@googlicius/build-url": "^1.0.11",
"@nuxtjs/gtm": "^2.4.0",
"@nuxtjs/i18n": "^7.2.2",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sentry": "^5.1.7",
"@nuxtjs/sitemap": "^2.4.0",
"balance-text": "^3.3.1",
"core-js": "^3.22.7",
"cross-fetch": "^3.1.5",
"dayjs": "^1.11.9",
"deepmerge": "^4.2.2",
"i18n-iso-countries": "^7.4.0",
"lazysizes": "^5.3.2",
"lodash": "^4.17.21",
"mitt": "^3.0.0",
"nuxt": "^2.15.8",
"p-map": "^5.4.0",
"postscribe": "^2.0.8",
"swell-js": "^3.19.5",
"uuid": "^9.0.0",
"vue": "^2.6.14",
"vue-country-region-select": "^2.0.16",
"vue-credit-card-validation": "^0.1.11",
"vue-glide-js": "^1.3.14",
"vue-select": "^3.18.3",
"vue-server-renderer": "^2.6.14",
"vue-slider-component": "^2.8.16",
"vue-template-compiler": "^2.6.14",
"vue-youtube-embed": "^2.2.2",
"vue2-datepicker": "^3.11.1",
"vuelidate": "^0.7.7",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.18.9",
"@flydotio/dockerfile": "^0.4.9",
"@nuxtjs/eslint-config": "^9.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/google-fonts": "^1.3.0",
"@nuxtjs/stylelint-module": "^5.1.0",
"@nuxtjs/tailwindcss": "^4.2.1",
"@swell/cli": "^1.0.2",
"@tailwindcss/aspect-ratio": "^0.4.2",
"autoprefixer": "^10.4.7",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"consola": "^2.15.3",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-vue": "^9.0.1",
"husky": "^8.0.1",
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"postcss": "^8.4.14",
"postcss-html": "^1.4.1",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.11",
"sass": "^1.64.2",
"sass-loader": "10",
"stylelint": "^15.6.2",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^33.0.0",
"tailwindcss": "^2.2.19",
"typescript": "^4.7.2",
"webpack": "^4.46.0"
},
"scripts": {
"dev": "nuxt",
"watch": "nuxt",
"build": "yarn sync && nuxt build && nuxt generate",
"generate": "yarn sync && nuxt generate",
"start": "nuxt start",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:style && yarn lint:prettier",
"lintfix:prettier": "prettier --write --list-different .",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix && yarn lint:style --fix",
"prepare": "husky install",
"test": "jest",
"sync": "node -r dotenv/config ./build-utils/sync-storefront.mjs"
}
}