-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 902 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
{
"name": "search-engine",
"version": "1.0.0",
"description": "This is a open-source search engine using redis database for its performance boost",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"devStart": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aashishpanthi/search-engine.git"
},
"keywords": [
"\"Aashish",
"Panthi\"",
"\"Search",
"engine\"",
"\"Roshan\""
],
"author": "Aashish Panthi",
"license": "MIT",
"bugs": {
"url": "https://github.com/aashishpanthi/search-engine/issues"
},
"homepage": "https://github.com/aashishpanthi/search-engine#readme",
"devDependencies": {
"nodemon": "^2.0.19"
},
"dependencies": {
"dotenv": "^16.0.1",
"express": "^4.18.1",
"joi": "^17.6.0",
"mongoose": "^6.5.3",
"redis-om": "^0.3.6"
}
}