forked from WoodWing/elvis-image-recognition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "elvis-image-recognition",
"private": true,
"version": "2.0.0",
"license": "MIT",
"author": {
"name": "WoodWing - Jaap van Blaaderen",
"url": "https://www.woodwing.com"
},
"engineStrict": true,
"engines": {
"node": ">= 6.9.0"
},
"scripts": {
"start": "$(npm bin)/ts-node src/server.ts",
"build": "tsc -p tsconfig.release.json",
"watch": "tsc -w -p tsconfig.release.json"
},
"devDependencies": {
"@types/aws-sdk": "2.7.0",
"@types/request": "2.0.0",
"typescript": "^2.4.2"
},
"dependencies": {
"@google-cloud/translate": "^1.0.0",
"@google-cloud/vision": "^0.14.0",
"@types/express": "^4.0.37",
"@types/node": "^8.0.28",
"aws-sdk": "^2.114.0",
"bluebird": "^3.5.0",
"body-parser": "^1.18.1",
"clarifai": "^2.4.0",
"console-stamp": "^0.2.5",
"express": "^4.15.4",
"limiter": "^1.1.2",
"request": "^2.81.0",
"secure-compare": "^3.0.1",
"ts-node": "^3.3.0",
"tslib": "~1.7.1",
"uuid": "^3.0.1"
}
}