-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
152 lines (152 loc) · 3.99 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "@hayes0724/shopify-packer",
"version": "2.4.4",
"bin": {
"packer": "cli/index.js"
},
"repository": "https://github.com/hayes0724/shopify-packer.git",
"bugs": "https://github.com/hayes0724/shopify-packer/issues",
"homepage": "https://hayes0724.github.io/shopify-packer/",
"author": "eric hayes <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12.13.0"
},
"keywords": [
"shopify",
"deployment",
"webpack",
"themekit",
"slate",
"babel"
],
"browserslist": [
"defaults"
],
"scripts": {
"test": "jest",
"lint": "eslint --ext .js src/** cli/**",
"lint:fix": "eslint --ext .js --fix src/** cli/**",
"semantic-release": "semantic-release",
"docs": "cd docs && yarn deploy",
"docs:start": "cd docs && yarn start"
},
"dependencies": {
"@babel/core": "^7.13.10",
"@shopify/themekit": "^1.1.9",
"archiver": "^5.3.0",
"array-flatten": "^3.0.0",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"browser-sync": "^2.26.14",
"chalk": "^4.1.2",
"clean-webpack-plugin": "^3.0.0",
"console-control-strings": "^1.1.0",
"copy-webpack-plugin": "^8.0.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"css-loader": "5.1.3",
"dotenv": "^10.0.0",
"download": "^8.0.0",
"eslint": "^7.22.0",
"express": "^4.17.1",
"extract-zip": "^2.0.1",
"figlet": "^1.4.0",
"figures": "^3.2.0",
"file-loader": "^6.2.0",
"fs-extra": "^9.1.0",
"html-webpack-plugin": "^5.3.1",
"html-webpack-tags-plugin": "^3.0.0",
"inquirer": "^8.0.0",
"ip": "^1.1.5",
"mini-css-extract-plugin": "^1.3.9",
"minimatch": "^3.0.4",
"minimist": "^1.2.5",
"mkcert": "^1.4.0",
"ora": "^5.4.0",
"portscanner": "^2.2.0",
"postcss": "^8.2.13",
"postcss-loader": "^6.2.1",
"prettier": "^2.1.2",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"stylelint": "^13.12.0",
"stylelint-webpack-plugin": "^2.1.1",
"table": "^6.8.0",
"tapable": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.69.1",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"webpack-dev-middleware": "^4.1.0",
"webpack-dev-server": "^3.11.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^5.7.3",
"yargs": "^16.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"babel-jest": "^26.3.0",
"conventional-changelog": "^3.1.23",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.4.2",
"lerna-changelog": "^1.0.1",
"mock-fs": "^4.13.0",
"prettier-eslint": "^12.0.0",
"semantic-release": "^17.4.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false
},
"changelog": {
"repo": "@hayes0724/shopify-packer",
"labels": {
"feat": ":rocket: Feature",
"fix": ":bug: Bug Fix",
"docs": ":memo: Documentation",
"test": ":memo: Tests",
"build": ":memo: Build",
"refactor": ":memo: Refactor",
"style": ":memo: Style",
"internal": ":house: Internal",
"config": ":wrench Config"
},
"cacheDir": ".changelog"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"access": "public"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}