-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 KB
/
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
39
40
41
42
{
"name": "lisk-inspector",
"version": "0.1.0",
"description": "Keep track of validator performance and statistics over time 🔍",
"scripts": {
"build": "rimraf ./dist && tsc",
"start": "node ./dist/index.js",
"pm2": "pm2 start npm --name \"lisk-inspector\" -- run start",
"dev": "NODE_ENV=development ts-node ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "lemii <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18.16 <=18"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"app-root-path": "^3.1.0",
"axios": "^1.6.2",
"better-sqlite3": "^9.2.2",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"figlet": "^1.7.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-rate-limit": "^6.0.0",
"@types/figlet": "^1.5.8",
"@types/node": "^20.10.4",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
}
}