-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "doc-search",
"version": "1.0.0",
"description": "this project is for searching in document using parallel approche",
"main": "app.js",
"scripts": {
"start": "nyc mocha --timeout=10000 --exit && node server",
"dev": "nodemon server",
"test": "nyc mocha --timeout=10000 --exit"
},
"author": "IT301",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.1",
"connect-mongo": "^4.4.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.0",
"express-flash": "0.0.2",
"express-session": "^1.17.1",
"fs-extra": "^9.1.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mongoose": "^5.12.5",
"multer": "^1.4.2",
"nodemailer": "^6.5.0",
"passport": "^0.4.1",
"passport-google-oauth2": "^0.2.0",
"passport-oauth2-refresh": "^2.0.1",
"pdf-parse": "^1.1.1",
"util": "^0.12.3",
"uuid": "^8.3.2",
"validator": "^13.6.0",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.3.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"supertest": "^6.0.1"
}
}