-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
114 lines (114 loc) · 4.15 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
{
"name": "shopify-starter-kit",
"version": "1.0.0",
"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/**/*.{scss,sass,css}",
"lint:fix": "eslint ./src --fix && stylelint ./src/**/*.{scss,sass,css} --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",
"zip": "npm run build:prod && npm-build-zip --source=dist/ --name=dist",
"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.19.6",
"@babel/preset-env": "^7.19.4",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"concurrently": "^7.4.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.25.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"gulp-rename": "^2.0.0",
"husky": "^8.0.1",
"imagemin-webpack-plugin": "^2.4.2",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.6.1",
"npm-build-zip": "^1.0.3",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"postcss": "^8.4.18",
"postcss-loader": "^7.0.1",
"postcss-safe-parser": "^6.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"remove-files-webpack-plugin": "^1.5.0",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"stylelint": "^15.10.1",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.3.0",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.10.0",
"webpack-remove-empty-scripts": "^1.0.1",
"yeoman-generator": "^5.7.0",
"yo": "^4.3.0"
},
"dependencies": {
"@shopify/prettier-plugin-liquid": "^0.4.0",
"@shopify/theme-a11y": "^4.1.1",
"@shopify/theme-addresses": "^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.5.1"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{css,scss,sass}": "stylelint --fix",
"*.{liquid}": "prettier --write"
}
}