-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 897 Bytes
/
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
{
"name": "nutrition-facts-bot",
"version": "1.0.0",
"description": "Take pictures of your food and get nutritional facts",
"scripts": {
"start": "node dist/index.js",
"postinstall": "npm run build",
"build": "tsc -p .",
"lint": "eslint --ext ts ."
},
"author": "Srijon Saha",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"clarifai": "^2.9.1",
"express": "^4.17.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"typescript": "^3.7.3"
},
"devDependencies": {
"@types/body-parser": "^1.17.1",
"@types/express": "^4.17.2",
"@types/request-promise-native": "^1.0.17",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1"
}
}