forked from wesselvanree/shopify-theme-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.48 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.48 KB
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
{
"name": "shopify-theme-tailwindcss",
"version": "2.0.2",
"description": "A starting point for an Online Store 2.0 theme using Tailwind CSS",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env NODE_ENV=production npm-run-all build:*",
"build:css": "postcss src/index.css -o shopify/assets/index.css",
"build:js": "npx webpack",
"watch:css": "postcss src/index.css -o shopify/assets/index.css --watch",
"watch:js": "npx webpack --watch",
"start": "npm run start:bundle",
"start:bundle": "npm-run-all -p watch:*",
"shopify": "cd shopify && shopify theme serve"
},
"keywords": [
"Shopify Theme",
"Online Store 2.0"
],
"author": "Wessel van Ree <hello@wesselvanree.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/node": "^7.13.13",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"glob": "^7.1.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"postcss-cli": "^8.3.1",
"postcss-minify": "^1.1.0",
"source-map-loader": "^3.0.0",
"tailwindcss": "^2.2.4",
"typescript": "^4.4.4",
"webpack": "^5.42.0",
"webpack-cli": "^4.7.2"
}
}