-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "soha-data-collection",
"version": "1.0.0",
"description": "A system to collect data for the Soha AI-powered chatbot.",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"prod": "node index.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/ParsaHejabi/soha-data-collection-system.git"
},
"keywords": [
"NLP",
"AI",
"Artificiall",
"Intelligence",
"Information",
"Extraction"
],
"author": "Parsa Hejabi",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/ParsaHejabi/soha-data-collection-system/issues"
},
"homepage": "https://gitlab.com/ParsaHejabi/soha-data-collection-system#readme",
"dependencies": {
"apollo-server": "^2.19.0",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"graphql": "^15.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.15"
},
"devDependencies": {
"husky": "^4.3.0",
"nodemon": "^2.0.6",
"prettier": "2.2.0",
"pretty-quick": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}