-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.32 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.32 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "themekit-webpack",
"version": "1.0.0",
"main": "webpack.config.js",
"license": "MIT",
"keywords": [],
"author": "Mike Salvati",
"private": true,
"scripts": {
"start": "TAILWIND_MODE=watch webpack serve --mode=development --config webpack.dev.js",
"build": "webpack --mode=production --config webpack.prod.js && npx tailwindcss build -i src/components/tailwind.css -o dist/assets/tailwind.css.liquid && cleancss -o dist/assets/tailwind.min.css.liquid dist/assets/tailwind.css.liquid",
"deploy": "webpack --mode=production --config webpack.prod.js && npx tailwindcss build -i src/components/tailwind.css -o dist/assets/tailwind.css.liquid && cleancss -o dist/assets/tailwind.min.css.liquid dist/assets/tailwind.css.liquid && shopify-themekit deploy --env=production"
},
"dependencies": {
"validator": "^13.5.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@shopify/eslint-plugin": "^40.4.0",
"@shopify/themekit": "^1.1.7",
"autoprefixer": "^10.3.1",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"browser-sync": "^2.26.14",
"clean-css-cli": "^5.3.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "6.x",
"core-js": "^3.8.3",
"css-loader": "^6.2.0",
"debug": "^4.3.1",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-webpack-plugin": "^3.0.1",
"file-loader": "^6.2.0",
"glob": "^7.1.6",
"graphql": "^15.5.0",
"html-webpack-plugin": "^5.3.2",
"liquidjs": "^9.20.1",
"mini-css-extract-plugin": "^2.1.0",
"node-fetch": "^2.6.1",
"node-sass": "^6.0.1",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"prettier": "^2.2.1",
"raw-loader": "^4.0.2",
"sass": "^1.32.5",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"tailwindcss": "^2.2.7",
"transform-class-properties": "^1.0.0-beta",
"typescript": "^4.1.3",
"webpack": "^5.18.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"webpack-shell-plugin-next": "^2.2.2",
"yaml": "^1.10.0",
"yargs": "^17.0.1"
}
}