-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 907 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
33
34
35
{
"name": "shopify-importer",
"version": "1.0.0",
"description": "Import Customers, Orders and products to Shopify Store from CSV",
"main": "index.js",
"scripts": {
"clean": "rimraf store-orders/*",
"preimport": "npm run clean",
"import": "node transform-order-data.js && node import-orders.js"
},
"keywords": [
"node",
"shopify",
"import"
],
"author": "Nicola Zanon <[email protected]> (https://nicola-zanon.com/)",
"license": "MIT",
"dependencies": {
"async-throttle": "^1.1.0",
"axios": "^0.17.0",
"csvtojson": "^1.1.9",
"dotenv": "^4.0.0",
"html-entities": "^1.2.1",
"isomorphic-fetch": "^2.2.1",
"json-fs-store": "^1.0.1",
"lodash": "^4.17.4",
"rimraf": "^2.6.2",
"shopify-api-node": "^2.9.0",
"throat": "^4.1.0"
},
"devDependencies": {
"prettier": "^1.7.4",
"prettier-eslint": "^8.2.1"
}
}