forked from veeren/shopify-auto-tag-customers-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 832 Bytes
/
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
{
"name": "shopify-auto-tag-customers-example",
"version": "0.0.0",
"description": "An example of a private Shopify app to auto-tagging customers based on order information.",
"private": true,
"main": "app.js",
"author": "Ryan Macdonald",
"license": "MIT",
"scripts": {
"start": "node ./bin/www",
"tunnel": "ngrok http 8000",
"test": "eslint . --config '.eslintrc.yml' --ignore-path '.eslintignore' --max-warnings 0"
},
"dependencies": {
"body-parser": "1.15.2",
"compression": "1.6.2",
"debug": "2.2.0",
"express": "4.14.0",
"morgan": "1.7.0",
"request": "2.74.0",
"request-promise": "4.1.0"
},
"devDependencies": {
"dotenv": "2.0.0",
"eslint": "3.2.2",
"eslint-plugin-shopify": "13.0.0"
},
"engines": {
"node": "6.2.2",
"npm": "3.10.6"
}
}