-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.28 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
{
"author": "Mike Winter <[email protected]>",
"datoCmsPlugin": {
"title": "Plugin title",
"previewImage": "docs/preview.gif",
"entryPoint": "dist/index.html",
"fieldTypes": [
"json"
],
"pluginType": "field_editor",
"parameters": {
"global": [
{
"hint": "[{'storeCountry': 'eu', 'storeDomain': 'test.domain', 'storeAccessToken': '1234567890'}, {'storeCountry': 'uk', 'storeDomain': 'test.domain', 'storeAccessToken': '1234567890'}]",
"id": "shopifyConfig",
"label": "JSON object with all your Shopify Stores API details & extra variant fields",
"type": "json"
}
],
"instance": [
{
"hint": "e.g. eu",
"id": "whichShopifyStore",
"label": "Which Shopify store do you wish to search (e.g. eu, uk, us)?",
"type": "string"
}
]
}
},
"dependencies": {
"@babel/preset-env": "^7.1.6",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-polyfill": "^6.26.0",
"css-loader": "^1.0.1",
"datocms-plugins-sdk": "0.0.8",
"uglifyjs-webpack-plugin": "^2.0.1",
"vue": "^2.5.17",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"whatwg-fetch": "^3.0.0"
},
"description": "Dato CMS UI extension to select Shopify products with full product data",
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-prettier": "^3.0.0",
"prettier": "^1.15.2",
"stylelint": "^9.8.0",
"stylelint-order": "^2.0.0"
},
"homepage": "https://github.com/StudioRotate/dato-shopify-full-product/#readme",
"keywords": [
"datocms-plugin"
],
"license": "GPL-3.0",
"name": "dato-shopify-full-product",
"repository": {
"type": "git",
"url": "https://github.com/StudioRotate/dato-shopify-full-product.git"
},
"scripts": {
"webpack:dev": "NODE_ENV=development webpack --progress",
"webpack:prod": "NODE_ENV=production webpack --progress",
"webpack:serve": "NODE_ENV=development webpack-dev-server --color --progress"
},
"version": "1.0.0"
}