forked from vuestorefront/vue-storefront-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.78 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "vue-storefront-api",
"version": "0.1.0",
"private": true,
"description": "vue-storefront API and data services",
"main": "dist",
"scripts": {
"dev": "nodemon -w src --exec \"babel-node src --presets env,stage-0\"",
"build": "babel src -s -D -d dist --presets env,stage-0",
"start": "pm2 start ecosystem.json $PM2_ARGS",
"db": "node scripts/db.js",
"seo": "node scripts/seo.js",
"mage2vs": "node scripts/mage2vs.js",
"restore": "node scripts/elastic.js restore",
"restore_it": "npm run restore -- --input-file=var/catalog_it.json --output-index=vue_storefront_catalog_it && npm run db rebuild -- --indexName=vue_storefront_catalog_it",
"restore_de": "npm run restore -- --input-file=var/catalog_de.json --output-index=vue_storefront_catalog_de && npm run db rebuild -- --indexName=vue_storefront_catalog_de",
"restore2main": "npm run restore -- --output-index=vue_storefront_catalog",
"dump": "node scripts/elastic.js dump",
"dump_it": "npm run dump -- --input-index=vue_storefront_catalog_it --output-file=var/catalog_it.json",
"dump_de": "npm run dump -- --input-index=vue_storefront_catalog_de --output-file=var/catalog_de.json",
"kue": "node scripts/kue.js",
"kue-dashboard": "npm run kue dashboard -- --port=3050",
"o2m": "node src/worker/order_to_magento2.js start",
"o2m-anon": "node src/worker/order_to_magento2.js testAnon",
"o2m-auth": "node src/worker/order_to_magento2.js testAuth",
"o2m-dev": "nodemon -w src/worker/order_to_magento2.js --exec \"node src/worker/order_to_magento2.js\"",
"migrate": "node node_modules/migrate/bin/migrate",
"prestart": "npm run -s build",
"test": "eslint src",
"setup": "npm run restore; npm run migrate",
"lint": "eslint --ext .js src migrations scripts"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/DivanteLtd/vue-storefront-api.git"
},
"author": "Piotr Karwatka <[email protected]>",
"license": "MIT",
"dependencies": {
"ajv": "^6.4.0",
"body-parser": "^1.18.2",
"bodybuilder": "2.2.13",
"commander": "^2.18.0",
"compression": "^1.7.2",
"config": "^1.30.0",
"cors": "^2.8.4",
"elasticdump": "^3.3.12",
"elasticsearch": "^13.3.1",
"email-check": "^1.1.0",
"express": "^4.16.3",
"graphql": "^0.10.1",
"graphql-tools": "^1.2.1",
"humps": "^1.1.0",
"jsonfile": "^4.0.0",
"jwa": "^1.1.5",
"jwt-simple": "^0.5.1",
"kue": "^0.11.6",
"lodash": "^4.17.10",
"mage2vuestorefront": "git+https://github.com/DivanteLtd/mage2vuestorefront.git",
"magento2-rest-client": "github:DivanteLtd/magento2-rest-client",
"merge-graphql-schemas": "^1.5.2",
"migrate": "^1.5.0",
"mime-types": "^2.1.18",
"morgan": "^1.9.0",
"nodemailer": "^4.6.8",
"oauth-1.0a": "^1.0.1",
"pm2": "^2.10.4",
"request": "^2.85.0",
"request-promise-native": "^1.0.5",
"resource-router-middleware": "^0.6.0",
"sharp": "^0.21.0",
"soap": "^0.23.0",
"winston": "^2.4.2"
},
"devDependencies": {
"apollo-server-express": "^1.3.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.16.0",
"nodemon": "^1.18.4"
},
"bugs": {
"url": "https://github.com/DivanteLtd/vue-storefront-api/issues"
},
"homepage": "https://github.com/DivanteLtd/vue-storefront-api/",
"keywords": [
"storefront",
"rest",
"api",
"nodejs"
],
"workspaces": [
"src/api/extensions/*",
"src/platform/*"
]
}