-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.25 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
{
"name": "ingredient-instruction-classifier",
"version": "0.0.0-development",
"description": "",
"main": "src/predict.js",
"scripts": {
"start": "node ./src/server.js",
"lint": "eslint ./src/*.js ./src/**/*.js",
"lint:fix": "npm run lint -- --fix",
"test": "jest ./src --watch --coverage",
"test:ci": "jest ./src --coverage",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/julianpoy/ingredient-instruction-classifier.git"
},
"author": "Julian Poyourow",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/julianpoy/ingredient-instruction-classifier/issues"
},
"homepage": "https://github.com/julianpoy/ingredient-instruction-classifier#readme",
"dependencies": {
"@tensorflow-models/universal-sentence-encoder": "^1.3.3",
"@tensorflow/tfjs-node": "^4.15.0",
"@tensorflow/tfjs-node-gpu": "^4.15.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"morgan": "^1.10.0",
"p-queue": "^6.6.2"
},
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"semantic-release": "^21.0.1"
}
}