-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
26 lines (26 loc) · 959 Bytes
/
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
{
"name": "danshari",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/mitchuman/danshari.git",
"author": "Mitchell Christ <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"shopify:switch": "shopify switch --store=human-dev.myshopify.com",
"start": "yarn shopify:switch && shopify theme serve",
"dev": "run-p dev:*",
"dev:css": "tailwindcss -i assets/theme.css -o assets/theme.min.css --watch",
"dev:js": "esbuild src/js/*.js --outdir=assets --out-extension:.js=.min.js --watch",
"build": "run-s build:*",
"build:css": "tailwindcss -i assets/theme.css -o assets/theme.min.css --postcss --minify",
"build:js": "esbuild src/js/*.js --outdir=assets --out-extension:.js=.min.js --minify"
},
"devDependencies": {
"autoprefixer": "^10.3.7",
"esbuild": "^0.13.8",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.9",
"tailwindcss": "^2.2.17"
}
}