-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.29 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.29 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "stable-pi-core",
"version": "1.0.0",
"description": "Core functionalities for the Stable Pi project, focusing on stability, performance, and blockchain interaction.",
"main": "dist/index.js",
"scripts": {
"test": "jest --detectOpenHandles --forceExit",
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts",
"build": "webpack --mode production",
"lint": "eslint .",
"format": "prettier --write '**/*.ts'",
"prepare": "husky install",
"precommit": "lint-staged"
},
"dependencies": {
"express": "^4.18.2",
"mongoose": "^6.6.5",
"web3": "^5.32.0",
"dotenv": "^16.0.3",
"axios": "^0.27.2",
"jsonwebtoken": "^9.0.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"nodemon": "^2.0.22",
"express-validator": "^6.14.0",
"multer": "^1.4.5-lts.1",
"socket.io": "^4.5.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"chart.js": "^3.9.1",
"pusher": "^7.0.0",
"request": "^2.88.2",
"helmet": "^5.0.2", // Security middleware for Express
"compression": "^1.7.4", // Middleware to compress response bodies
"morgan": "^1.10.0", // HTTP request logger middleware
"rate-limit": "^1.0.0" // Rate limiting middleware
},
"devDependencies": {
"jest": "^29.0.3",
"supertest": "^6.3.3",
"eslint": "^8.20.0",
"prettier": "^2.7.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.8.0",
"ts-loader": "^9.2.6", // TypeScript loader for Webpack
"typescript": "^4.8.4", // TypeScript for type safety
"husky": "^7.0.4", // Git hooks for pre-commit
"lint-staged": "^12.1.2" // Run linters on pre-commit
},
"keywords": [
"node",
"express",
"web3",
"ethereum",
"mongodb",
"stable-pi",
"real-time",
"data-visualization",
"typescript",
"security",
"performance"
],
"author": "KOSASIH",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KOSASIH/stable-pi-core.git"
},
"bugs": {
"url": "https://github.com/KOSASIH/stable-pi-core/issues"
},
"homepage": "https://github.com/KOSASIH/stable-pi-core#readme"
}