-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·51 lines (51 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
46
47
48
49
50
51
{
"name": "question-answering-web-app",
"version": "1.0.0",
"description": "Answering question based on passage",
"main": "server.js",
"scripts": {
"test": "jest --no-cache --detectOpenHandles --watchAll --verbose --forceExit",
"start": "node server.js"
},
"engines": {
"node": "12.18.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yashkim77/question-answering-web-app.git"
},
"keywords": [
"tensorflowjs",
"Q&A",
"transformers",
"bert"
],
"author": "Yash Kimtani",
"license": "ISC",
"bugs": {
"url": "https://github.com/yashkim77/question-answering-web-app/issues"
},
"homepage": "https://github.com/yashkim77/question-answering-web-app#readme",
"dependencies": {
"@tensorflow/tfjs-node": "^2.0.1",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dot-prop": "^5.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^4.1.0",
"install": "^0.13.0",
"mongoose": "^5.10.0",
"nodemon": "^2.0.4",
"npm-check-updates": "^8.1.1",
"question-answering": "^3.0.0",
"winston": "^3.3.0"
},
"devDependencies": {
"bl": "^2.2.1",
"jest": "^25.2.2",
"supertest": "^4.0.2"
}
}