forked from spiral/shopify-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 4.1 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
108
109
110
111
112
113
114
115
{
"name": "shopify-starter-kit",
"version": "0.0.1",
"description": "Starter theme and environment for the largest Shopify stores.",
"main": "webpack.config.js",
"scripts": {
"build": "webpack --progress",
"build:prod": "webpack --progress --mode='production'",
"analyze": "webpack --profile --json > .stats-dev.json && webpack-bundle-analyzer .stats-dev.json",
"analyze:prod": "webpack --mode='production' --profile --json > .stats-prod.json && webpack-bundle-analyzer .stats-prod.json",
"watch": "webpack --watch",
"watch:prod": "webpack --watch --mode='production'",
"test": "npm run lint",
"theme:open": "shopify-themekit open --env=development",
"theme:open:prod": "shopify-themekit open --env=production",
"theme:watch": "shopify-themekit watch --env=development",
"theme:watch:prod": "shopify-themekit watch --allow-live --env=production",
"theme:deploy": "shopify-themekit deploy --env=development",
"theme:deploy:prod": "shopify-themekit deploy --env=production",
"theme:download": "shopify-themekit download --env=development -dir=theme",
"theme:download:prod": "shopify-themekit download --env=production --dir=theme",
"lint": "eslint ./src && stylelint ./src",
"lint:fix": "eslint ./src --fix && stylelint ./src --fix",
"deploy": "npm run lint && npm run build && npm run theme:deploy",
"deploy:prod": "npm run lint && npm run build:prod && npm run theme:deploy:prod",
"start": "concurrently \"npm run watch\" \"npm run theme:watch\" \"npm run theme:open\"",
"gen": "yo ./generator",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spiral/shopify-starter-kit.git"
},
"keywords": [
"Boilerplate",
"Codestyle",
"Shopify",
"Shopify Theme Kit",
"Scss",
"Webpack"
],
"author": "Kreezag",
"license": "MIT",
"bugs": {
"url": "https://github.com/spiral/shopify-starter-kit/issues"
},
"homepage": "https://github.com/spiral/shopify-starter-kit#readme",
"directories": {
"doc": "docs"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/runtime": "^7.13.10",
"autoprefixer": "^10.3.6",
"babel-loader": "^8.2.2",
"concurrently": "^6.2.0",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.2",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"gulp-rename": "1.2.2",
"husky": "^7.0.1",
"imagemin-webpack-plugin": "^2.4.2",
"lint-staged": "^11.0.0",
"mini-css-extract-plugin": "^1.4.1",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"postcss": "^8.2.10",
"postcss-loader": "^5.2.0",
"postcss-safe-parser": "^6.0.0",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.1",
"remove-files-webpack-plugin": "^1.4.4",
"sass": "^1.43.5",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"terser-webpack-plugin": "^5.2.5",
"webpack": "^5.33.2",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.6.0",
"webpack-remove-empty-scripts": "^0.7.1",
"yeoman-generator": "^5.4.0",
"yo": "^4.3.0"
},
"dependencies": {
"@shopify/theme-a11y": "^4.1.1",
"@shopify/theme-addresses": "^4.1.1",
"@shopify/theme-cart": "^4.1.1",
"@shopify/theme-currency": "^4.1.1",
"@shopify/theme-product": "^4.1.1",
"@shopify/theme-product-form": "^4.1.1",
"@shopify/theme-sections": "^4.1.1",
"@shopify/themekit": "^1.1.9",
"lazysizes": "^5.3.2",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"qrcode": "^1.4.4"
},
"lint-staged": {
"*.{js,css,scss,sass}": "npm run lint:fix",
"*.js": "eslint --cache --fix",
"*.css": "stylelint --fix"
}
}