-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
122 lines (122 loc) · 3.68 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
113
114
115
116
117
118
119
120
121
122
{
"name": "lifescope-api",
"version": "4.0.6",
"description": "Search and Explore the internet of you. lifescope.io",
"author": "LifeScope Labs (https://lifescope.io)",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/lifescopelabs/lifescope-api.git"
},
"main": "/server.js",
"engines": {
"node": "^12.*",
"yarn": "^1.5.1"
},
"files": [
"lib"
],
"scripts": {
"build": "gulp lint && sh build.sh",
"debug": "babel-node server.js --inspect-brk=localhost:3333",
"start": "nodemon server.js --exec babel-node --presets env,stage-2",
"start-dev": "nodemon server.js --exec babel-node --presets env,stage-2 --inspect-brk=localhost:3333",
"start:watch": "nodemon server.js -e js --exec babel-node",
"watch": "jest --watch",
"coverage": "jest --coverage --maxWorkers 2",
"lint": "eslint --ext .js ./",
"flow": "./node_modules/.bin/flow",
"test": "npm run coverage && npm run lint && npm run flow",
"serve": "node dist/api/server.js"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.2.2",
"babel-plugin-transform-es2015-modules-amd": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.17.3",
"flow-bin": "0.65.0",
"gulp": "^3.9.1",
"gulp-add-src": "^1.0.0",
"gulp-babel": "^7.0.1",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^5.0.0",
"gulp-gzip": "^1.4.2",
"gulp-header": "^2.0.5",
"gulp-jsonlint": "^1.2.1",
"gulp-rename": "^1.2.2",
"gulp-tar": "^2.1.0",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"gulp-zip": "^4.1.0",
"jest": "^22.3.0",
"nodemon": "^1.19.4",
"path": "^0.12.7",
"request": "^2.83.0",
"run-sequence": "^2.2.1"
},
"dependencies": {
"ajv": "^6.11.0",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link": "^1.2.13",
"apollo-link-http": "^1.5.16",
"apollo-link-ws": "^1.0.19",
"apollo-server-express": "^2.9.16",
"apollo-utilities": "^1.3.3",
"aws-sdk": "^2.401.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"bitscoop-sdk": "^0.2.0",
"body-parser": "^1.19.0",
"bson": "^4.0.3",
"bufferutil": "^4.0.1",
"config": "^3.2.5",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"csrf": "^3.1.0",
"deep-equal": "^2.0.1",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs": "0.0.1-security",
"glob": "^7.1.2",
"graphql": "^14.5.8",
"graphql-compose": "~7.9.0",
"graphql-compose-connection": "^6.0.3",
"graphql-compose-mongoose": "^7.3.4",
"graphql-compose-pagination": "^6.0.3",
"graphql-compose-relay": "^5.0.3",
"graphql-playground-middleware-express": "^1.7.12",
"graphql-subscriptions": "^1.1.0",
"graphql-tag": "^2.10.1",
"graphql-type-json": "^0.3.1",
"http-errors": "^1.6.2",
"idempotent-babel-polyfill": "^0.1.1",
"json-schema-ref-parser": "^5.0.0",
"lodash": "^4.17.15",
"mandrill-api": "^1.0.45",
"mixitup": "^3.3.1",
"moment": "^2.24.0",
"mongodb": "^3.5.2",
"mongoose": "^5.9.2",
"mongoose-uuid2": "^2.3.0",
"multer": "^1.4.2",
"neat-csv": "^5.1.0",
"node-uuid": "^1.4.8",
"subscriptions-transport-ws": "^0.9.16",
"through2": "^3.0.1",
"type-detect": "^4.0.8",
"useragent": "^2.3.0",
"utf-8-validate": "^5.0.2",
"uuid": "^3.2.1",
"uuid-parse": "^1.0.0",
"whatwg-fetch": "^2.0.4",
"ws": "^7.2.1"
}
}