-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.55 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.55 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
{
"name": "api-fox",
"version": "1.0.0",
"description": "StellarAid Backend is the server-side API powering the StellarAid crowdfunding platform — a blockchain‑enabled system built on the Stellar network to support transparent, secure, and efficient fundraising for social impact initiatives.",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{js,json,md}\"",
"build": "echo \"No build required for Node.js project\"",
"dev": "nodemon src/server.js",
"start": "node src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SudiptaPaul-31/api-fox.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/SudiptaPaul-31/api-fox/issues"
},
"homepage": "https://github.com/SudiptaPaul-31/api-fox#readme",
"dependencies": {
"bcryptjs": "^3.0.3",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"joi": "^18.0.2",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.2.3",
"morgan": "^1.10.1",
"nodemailer": "^8.0.1"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-node": "^11.1.0",
"globals": "^17.4.0",
"jest": "^30.2.0",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"supertest": "^7.2.2"
}
}