forked from HauntedSmores/shopify-base-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 1.92 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
{
"name": "vpv-shopify-theme",
"version": "2.0.0",
"description": "",
"main": "index.js",
"repository": "https://github.com/verbalplusvisual/vpv-shopify-base-theme",
"scripts": {
"build": "node -r esm ./functions/Build",
"watch": "node -r esm ./functions/Watch",
"deploy": "node -r esm ./functions/Deploy",
"download": "node -r esm ./functions/Download"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"babel-loader": "^8.0.6",
"core-js": "^3.6.2",
"css-loader": "^3.4.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"esm": "^3.2.25",
"node-sass": "^4.13.0",
"postcss-loader": "^3.0.0",
"sass-lint": "^1.13.1",
"sass-loader": "^8.0.0",
"shopify-themekit": "^0.1.3",
"string-replace-loader": "^2.2.0"
},
"dependencies": {
"@shopify/themekit": "^1.1.3",
"autoprefixer": "^8.6.5",
"axios": "^0.19.1",
"body-scroll-lock": "^2.6.4",
"chalk": "^2.4.1",
"chokidar": "^3.3.1",
"chrome-launcher": "^0.12.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"html-minifier": "^4.0.0",
"mini-css-extract-plugin": "^0.8.2",
"postcss-preset-env": "^6.7.0",
"slash": "^3.0.0",
"terser-webpack-plugin": "^2.3.2",
"vue": "^2.6.11",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"browser": true,
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 10,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"rules": {
"no-console": "off",
"strict": [
"error",
"global"
],
"curly": "warn",
"indent": [
"error",
"tab"
],
"allowIndentationTabs": true,
"no-tabs": 0
}
},
"eslintIgnore": [
"dist",
"node_modules"
]
}