-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "CoreServe",
"version": "1.0.1",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"dev": "NODE_ENV=development node index.js",
"start": "NODE_ENV=production node index.js",
"test": "NODE_ENV=test NODE_OPTIONS='--experimental-vm-modules' jest"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"description": "A modular Node.js backend starter with authentication, API key protection, and score endpoints.",
"dependencies": {
"@ngrok/ngrok": "^1.5.1",
"bcryptjs": "^3.0.2",
"chalk": "^5.4.1",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"lru-cache": "^11.1.0",
"mysql2": "^3.14.1",
"node-cache": "^5.1.2",
"ora": "^8.2.0",
"redis": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"artillery": "^2.0.23",
"babel-jest": "^29.7.0",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"supertest": "^7.1.1"
}
}