-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.23 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.23 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
{
"name": "nft-blockchain-service",
"version": "1.0.0",
"description": "nft blockchain service",
"main": "index.js",
"license": "MIT",
"dependencies": {
"axios": "^0.26.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"generic-pool": "^3.9.0",
"ioredis": "5.4.1",
"redis": "4.6.14",
"socket.io": "^4.5.4"
},
"scripts": {
"build": "rimraf build && tsc -p tsconfig.json",
"start:single": "NODE_ENV=test nodemon src/api.ts",
"start:multiple": "NODE_ENV=test nodemon src/api_multiple.ts",
"start:simple_cache": "NODE_ENV=test nodemon src/simple_cache_api.ts",
"start:session_storage": "NODE_ENV=test nodemon src/session_storage.ts.ts",
"start:rate_limit": "NODE_ENV=test nodemon src/rate_limit.ts",
"start:task_queue": "NODE_ENV=test nodemon src/task_queue.ts",
"start:real_time_dashboard": "NODE_ENV=test nodemon src/real_time_dashboard.ts",
"start-redis": "docker-compose up -d"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.9.1",
"jest": "^27.1.1",
"nodemon": "^2.0.12",
"ts-jest": "^27.0.7",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "^4.4.3"
}
}