-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.14 KB
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
{
"name": "mini-search-engine",
"version": "1.0.0",
"description": "Full-text search engine with Inverted Index, Trie, Heap, TF-IDF, and PostgreSQL",
"main": "src/api/server.js",
"scripts": {
"start": "node src/api/server.js",
"dev": "nodemon src/api/server.js",
"test": "jest --runInBand",
"test:unit": "jest tests/unit --runInBand",
"test:integration": "jest tests/integration --runInBand",
"migrate": "node src/storage/migrations/migrate.js",
"ingest": "node scripts/ingestWikipedia.js"
},
"dependencies": {
"express": "^4.18.2",
"pg": "^8.11.0",
"dotenv": "^16.3.1",
"natural": "^6.10.4",
"stopword": "^2.0.8",
"winston": "^3.10.0",
"compression": "^1.7.4",
"helmet": "^7.0.0",
"express-rate-limit": "^6.9.0",
"axios": "^1.4.0",
"csv-parser": "^3.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"jest": "^29.6.1",
"supertest": "^6.3.3",
"nodemon": "^3.0.1"
},
"jest": {
"testEnvironment": "node",
"testMatch": ["**/tests/**/*.test.js"],
"collectCoverageFrom": ["src/**/*.js"],
"coverageDirectory": "coverage",
"testTimeout": 30000
}
}