-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 2.82 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
{
"name": "blendtec-shopify-theme",
"version": "0.0.1",
"description": "Blendtec Shopify Theme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"watch:webpack": "webpack --watch",
"watch:theme": "theme watch -d dist",
"upload": "theme deploy -n -d dist",
"theme": "theme",
"lint:all": "slate-tools lint",
"lint": "eslint",
"lint:fix": "eslint --fix ",
"release": "semantic-release",
"zip": "cd dist && tar -zcf ../blendtec-theme.tar.gz * ../CHANGELOG.md && cd .."
},
"repository": "git+https://github.com/Blendtec/blendtec-shopify-theme.git",
"author": "[email protected]",
"bugs": {
"url": "https://github.com/Blendtec/blendtec-shopify-theme/issues"
},
"homepage": "https://github.com/Blendtec/blendtec-shopify-theme#readme",
"devDependencies": {
"@semantic-release/changelog": "^2.0.2",
"@semantic-release/git": "^5.0.0",
"@semantic-release/github": "^4.2.17",
"@semantic-release/npm": "^3.2.5",
"@shopify/slate-tools": "^1.0.0-beta.1",
"@shopify/theme-lint": "^2.0.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"eslint": "^5.1.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-shopify": "^22.1.0",
"eslint-plugin-standard": "^3.0.1",
"imagesloaded": "^4.1.4",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"sass-loader": "^7.0.1",
"semantic-release": "^15.4.1",
"style-loader": "^0.21.0",
"stylelint-config-prettier": "^3.2.0",
"stylelint-config-shopify": "^5.0.1",
"webpack": "^4.8.2",
"webpack-cli": "^2.1.3"
},
"private": true,
"dependencies": {
"@shopify/theme-sections": "^1.0.0-alpha.4",
"fastclick": "1.0.3",
"fitvids": "1.0.2",
"handlebars": "1.3.0",
"imports-loader": "^0.8.0",
"jquery": "1.11.0",
"jquery.scrollto": "^2.1.2",
"lazysizes": "^4.1.2",
"lodash": "3.9.3",
"masonry-layout": "3.3.0",
"normalize.css": "^8.0.0",
"slick-carousel": "^1.8.1"
},
"release": {
"branch": "master",
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/github"
],
"prepare": [
{
"path": "@semantic-release/changelog",
"changelogFile": "./CHANGELOG.md"
},
"@semantic-release/git"
],
"publish": [
{
"path": "@semantic-release/npm",
"npmPublish": false,
"tarballDir": "dist"
},
{
"path": "@semantic-release/github",
"assets": [
{
"path": "blendtec-theme.tar.gz",
"label": "Blendtec Shopify Theme"
}
]
}
]
}
}