-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·85 lines (85 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·85 lines (85 loc) · 2.13 KB
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
{
"name": "vue-storefront-api",
"version": "1.10.0",
"private": true,
"description": "vue-storefront API and data services",
"main": "dist",
"scripts": {
"dev": "nodemon",
"dev:inspect": "nodemon --exec \"node --inspect -r ts-node/register src\"",
"build": "npm run -s build:code",
"build:code": "tsc --build",
"start": "pm2 start ecosystem.json $PM2_ARGS",
"prestart": "npm run -s build",
"test": "eslint src",
"lint": "eslint --ext .js src migrations scripts"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"env": {
"node": true,
"es6": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/DivanteLtd/vue-storefront-integration-sdk.git"
},
"author": "Piotr Karwatka <pkarwatka@divante.pl>",
"license": "MIT",
"dependencies": {
"ajv": "^6.4.0",
"ajv-keywords": "^3.4.0",
"body-parser": "^1.18.2",
"bodybuilder": "2.2.13",
"compression": "^1.7.2",
"config": "^1.30.0",
"cors": "^2.8.4",
"express": "^4.16.3",
"humps": "^1.1.0",
"jsonfile": "^4.0.0",
"jwa": "^1.1.5",
"jwt-simple": "^0.5.1",
"lodash": "^4.17.10",
"md5": "^2.2.1",
"mime-types": "^2.1.18",
"morgan": "^1.9.0",
"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.25.0",
"winston": "^2.4.2"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/config": "^0.0.34",
"@types/express": "^4.16.1",
"@types/node": "^11.13.4",
"cpx": "^1.5.0",
"eslint": "^4.16.0",
"nodemon": "^1.18.7",
"ts-node": "^8.1.0",
"tslib": "^1.9.3",
"typescript": "3.3.*"
},
"bugs": {
"url": "https://github.com/DivanteLtd/vue-storefront-integration-sdk/issues"
},
"homepage": "https://github.com/DivanteLtd/vue-storefront-integration-sdk/",
"keywords": [
"storefront",
"rest",
"api",
"nodejs"
]
}