-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.53 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.53 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
{
"name": "xmrt-ecosystem-v2",
"version": "2.1.0",
"description": "XMRT Ecosystem V2 - Production-ready monorepo for decentralized Monero mining and DAO governance",
"main": "apps/api/src/index.js",
"scripts": {
"start": "node apps/api/src/index.js",
"dev": "nodemon apps/api/src/index.js",
"build": "npm run build:frontend",
"build:frontend": "cd apps/web/frontend && npm install && npm run build",
"install:all": "npm install && cd apps/api && npm install && cd ../web/frontend && npm install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"express": "^4.18.2",
"helmet": "^7.0.0",
"cors": "^2.8.5",
"compression": "^1.7.4",
"http-status": "^1.6.2",
"mongoose": "^7.5.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"jsonwebtoken": "^9.0.2",
"bcryptjs": "^2.4.3",
"joi": "^17.9.2",
"morgan": "^1.10.0",
"winston": "^3.10.0",
"dotenv": "^16.3.1",
"express-rate-limit": "^6.10.0",
"express-mongo-sanitize": "^2.2.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"nodemon": "^3.0.1",
"eslint": "^8.47.0",
"prettier": "^3.0.2"
},
"keywords": [
"xmrt",
"monero",
"mining",
"dao",
"blockchain",
"cryptocurrency",
"decentralized",
"ecosystem"
],
"author": "Manus AI & DevGruGold",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DevGruGold/XMRT_EcosystemV2.git"
}
}