-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 938 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "booksapp",
"version": "1.0.0",
"description": "search engine for books about computer science",
"main": "booksapp.js",
"scripts": {
"dev": "nodemon booksapp",
"start": "node booksapp.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"argon2": "^0.27.0",
"body-parser": "^1.19.0",
"bunyan": "^1.8.14",
"crypto-random-string": "^3.3.0",
"csurf": "^1.11.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.6.1",
"helmet": "^4.1.0",
"level": "^6.0.1",
"mongodb": "^3.6.0",
"natural": "^2.1.5",
"secure-random": "^1.1.2",
"session-file-store": "^1.4.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
},
"nodemonConfig": {
"verbose": true,
"ignore": [
"sessions/*",
"scraper_io/*",
"logs/*",
"fii/*",
"cypress/*"
]
}
}