-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 771 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 771 Bytes
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
{
"name": "dis-cache",
"version": "1.0.0",
"description": "Distributed Cache System with Consistent Hashing",
"main": "src/server/CacheServer.js",
"scripts": {
"start": "node src/server/CacheServer.js",
"dev": "nodemon src/server/CacheServer.js",
"test": "jest --runInBand",
"test:unit": "jest tests/unit --runInBand",
"test:integration": "jest tests/integration --runInBand",
"test:simulation": "jest tests/simulation --runInBand"
},
"dependencies": {
"express": "^4.18.2",
"ioredis": "^5.3.2",
"winston": "^3.11.0",
"axios": "^1.6.2"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"supertest": "^6.3.3"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 30000
}
}