-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.41 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
{
"name": "businext",
"version": "0.0.0",
"private": true,
"description": "Business Insight Extractor and Interpreter",
"bugs": {
"url": "https://github.com/businext/businext.ai/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/businext/businext.ai.git"
},
"license": "ISC",
"contributors": [
"Joshua Cheng <josh510cheng@gmail.com>",
"Benny Lam <bennylam6@gmail.com>",
"Justin Xu <xu.justin.j@gmail.com>",
"Tim Zwart <timrzwart@gmail.com>"
],
"main": "lib/index.js",
"scripts": {
"build": "tsc && npm run copySchema",
"start": "node lib",
"start:dev": "concurrently 'tsc --watch' 'nodemon lib --ext js,graphql'",
"copySchema": "cp --recursive src/graphql/schema/ lib/graphql",
"generateTypes": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@google-cloud/vision": "^2.3.1",
"@googlemaps/google-maps-services-js": "^3.1.16",
"@graphql-tools/graphql-file-loader": "^6.2.7",
"@graphql-tools/load": "^6.2.8",
"@graphql-tools/schema": "^7.1.3",
"apollo-server": "^2.22.2",
"fast-memoize": "^2.5.2",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"opencage-api-client": "^1.0.0",
"word2vec": "^1.1.4",
"yelp-fusion": "^3.0.0"
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.3",
"@graphql-codegen/typescript": "1.21.1",
"@types/node": "^14.14.37",
"concurrently": "^6.0.1",
"nodemon": "^2.0.7",
"typescript": "^4.2.4"
}
}