-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "menu-translation",
"version": "1.0.0",
"engines": {
"node": "8.12.0"
},
"description": "an app that translates menus",
"main": "server.js",
"scripts": {
"test": "mocha",
"start": "node server.js",
"server": "nodemon server.js",
"client-install": "npm install --prefix client",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Muosvr/menu-translation.git"
},
"author": "Jason Wu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Muosvr/menu-translation/issues"
},
"homepage": "https://github.com/Muosvr/menu-translation#readme",
"dependencies": {
"@google-cloud/translate": "^2.1.3",
"@google-cloud/vision": "^0.24.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"concurrently": "^4.1.0",
"express": "^4.16.4",
"express-fileupload": "^1.0.0",
"mocha": "^5.2.0",
"mongoose": "^5.4.6",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"validate-image-url": "^1.0.1"
},
"devDependencies": {
"nodemon": "^1.18.9"
}
}