-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "wp-shopify",
"version": "2.1.0",
"engines": {
"node": "11.x"
},
"description": "A WordPress plugin to easily integrate Shopify into any site.",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development webpack --progress --colors --watch",
"build": "NODE_ENV=production webpack --progress --hide-modules"
},
"babel": {
"presets": [
"env",
"stage-0"
],
"plugins": [
"transform-runtime"
]
},
"prettier": {
"tabWidth": 4,
"semi": false,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/funkhaus/wp-shopify.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/funkhaus/wp-shopify/issues"
},
"homepage": "https://github.com/funkhaus/wp-shopify#readme",
"dependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^7.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.22.0",
"css-loader": "^0.28.4",
"graphql-js-client": "^0.9.2",
"imagesloaded": "^4.1.1",
"lodash": "^4.17.4",
"lodash.get": "^4.4.2",
"shopify-buy": "^0.7.1",
"vue": "^2.2.6",
"vue-loader": "^11.3.4",
"vue-template-compiler": "^2.2.6",
"webpack": "^3.0.0"
}
}