-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "ds-node-service",
"version": "4.0.3",
"description": "Base class for Deepstream RPC based Node services",
"main": "index.js",
"scripts": {
"test": "npx babel-node ./test/index.js",
"build": "babel src -o index.js",
"prepublish": "npm run build",
"start": "node --nouse-idle-notification --expose-gc --max-old-space-size=8192 ./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/whitelizard/ds-node-service.git"
},
"author": "Esbjörn Blomquist",
"license": "MIT",
"dependencies": {
"extended-ds-client": "^6.1.6",
"idempotent-babel-polyfill": "^6.26.0",
"joi": "^13.6.0",
"lodash.mapvalues": "^4.6.0",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"blue-tape": "^1.0.0",
"body-parser": "^1.18.3",
"deepstream.io": "^3.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"express": "^4.16.3"
}
}