-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.68 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
{
"name": "porter-template",
"version": "1.0.0",
"repository": "git@github.com:TheBeyondGroup/porter-template.git",
"author": "Jeffrey Guenther <guenther.jeffrey@gmail.com>",
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"@shopify/prettier-plugin-liquid": "^1.3.4",
"@thebeyondgroup/shopkeeper": "^1.0.0",
"@types/node": "^20.9.4",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"autoprefixer": "^10.4.16",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"esbuild": "^0.19.7",
"esbuild-loader": "^4.0.2",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"lightningcss": "^1.22.1",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"style-loader": "^3.3.3",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"tailwindcss": "^3.3.5",
"terser-webpack-plugin": "^5.3.9",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"zod": "^3.21.4"
},
"scripts": {
"build": "NODE_ENV=development webpack",
"build:prod": "NODE_ENV=production webpack",
"dev": "npx shopify theme dev",
"format": "prettier . --write",
"lint:css": "stylelint \"**/*.css\"",
"lint:js": "eslint .",
"lint:shopify": "shopify theme check --config ./theme-check.yml",
"watch": "NODE_ENV=development webpack --watch"
}
}