-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 805 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 805 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
30
31
32
{
"name": "sclm",
"version": "1.0.0",
"description": "Service Cache Layer Manager",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"watch": "tsc --watch",
"pm2:start": "npm run build && pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop sclm",
"pm2:restart": "pm2 restart sclm",
"pm2:logs": "pm2 logs sclm",
"pm2:status": "pm2 status",
"test:cli": "ts-node scripts/test-cli.ts"
},
"keywords": [],
"author": "ThxImpulse",
"license": "MIT",
"dependencies": {
"dotenv": "^16.3.1",
"redis": "^4.7.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/uuid": "^9.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}