-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.71 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
{
"name": "shopify-bare",
"version": "1.0.4",
"description": "Pre-configured/opinionated way to Start Developing a Shopify Theme",
"main": "",
"scripts": {
"serve": "shopify theme serve /dist & gulp watch",
"share": "shopify theme share /dist",
"dev": "gulp store:login && shopify theme serve /dist & gulp watch",
"deploy": "gulp deploy:staging",
"sync:settings": "shopify theme pull --path dist --live --only \"config/settings_data.json\" --only \"templates/*.json\" --force",
"build": "gulp build",
"build:prod": "NODE_ENV=production gulp build",
"build:css": "gulp build:css",
"build:js": "gulp build:js",
"open": "shopify theme open --development",
"store:login": "gulp store:login",
"watch": "gulp watch"
},
"author": "mcqua007",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
"autoprefixer": "^10.4.13",
"dotenv": "^16.0.3",
"gulp": "^4.0.2",
"gulp-better-rollup": "^4.0.1",
"gulp-cssnano": "^2.1.3",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-postcss": "^9.0.1",
"gulp-prettier": "^4.0.0",
"gulp-purgecss": "^3.1.3",
"gulp-rename": "^2.0.0",
"gulp-run": "^1.7.1",
"gulp-size": "^3.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-strip-comments": "^2.5.2",
"gulp-terser": "^2.0.1",
"gulp-watch": "^5.0.1",
"js-yaml": "^3.14.1",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"rollup": "^2.36.0",
"tailwindcss": "^3.2.7"
},
"dependencies": {}
}