generated from uicrooks/shopify-foundation-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.38 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
{
"name": "foundation-alpine",
"description": "Modern Shopify theme using Shopify Theme Lab, Liquid, Alpine.js and Tailwind CSS",
"author": "Pretty Rad Studio",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"start": "run-p -sr shopify:serve webpack:watch",
"deploy": "run-s webpack:build && cd shopify && shopify theme push",
"deploy:new": "run-s webpack:build && cd shopify && shopify theme push --unpublished",
"webpack:watch": "cross-env NODE_ENV=development BROWSERSLIST_ENV=development BROWSERSLIST_CONFIG=.config/.browserslistrc webpack --config .config/webpack/webpack.dev.js --watch --progress",
"webpack:build": "cross-env NODE_ENV=production BROWSERSLIST_ENV=production BROWSERSLIST_CONFIG=.config/.browserslistrc webpack --config .config/webpack/webpack.prod.js --progress",
"shopify:serve": "cd shopify && shopify theme serve",
"shopify:pull": "cd shopify && shopify theme pull",
"lint": "run-s -c lint:*",
"lint:js": "eslint src/**/*.{js,vue} --config .config/.eslintrc.js",
"lint:css": "stylelint src/**/*.{vue,css,sass,scss} --config .config/.stylelintrc.js",
"lint:shopify": "cd shopify && shopify theme check",
"fix": "run-s -c fix:*",
"fix:js": "eslint src/**/*.{js,vue} --config .config/.eslintrc.js --fix",
"fix:css": "stylelint src/**/*.{vue,css,sass,scss} --config .config/.stylelintrc.js --fix",
"fix:shopify": "cd shopify && shopify theme check -a"
},
"dependencies": {
"alpinejs": "^3.10.5",
"tailwindcss": "^3.1.8"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@vue/compiler-sfc": "^3.2.26",
"autoprefixer": "^10.4.0",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.2.0",
"eslint": "^8.4.1",
"eslint-plugin-vue": "^8.2.0",
"eslint-webpack-plugin": "^3.1.1",
"mini-css-extract-plugin": "^2.4.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"postcss-html": "^1.3.0",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.2.1",
"stylelint": "^14.1.0",
"stylelint-config-recommended": "^6.0.0",
"stylelint-webpack-plugin": "^3.1.0",
"url-loader": "^4.1.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
}
}