-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
43
44
45
46
{
"name": "daily-forge-server",
"version": "1.0.0",
"description": "Habbit Tracker",
"main": "dist/app.ts",
"scripts": {
"start": "npx ts-node src/app.ts",
"lint": "eslint . src/**/*.ts",
"format": "prettier --write ."
},
"keywords": [
"NodeJS, Javascript, Typescript, Express, MySQL"
],
"author": "Eliuth Bompart || github.com/eliuttth-dev || [email protected]",
"license": "MIT",
"devDependencies": {
"@eslint/js": "9.18.0",
"@types/cors": "2.8.17",
"@types/dotenv": "8.2.3",
"@types/express": "5.0.0",
"@types/jsonwebtoken": "9.0.8",
"eslint": "9.18.0",
"globals": "15.14.0",
"nodemon": "3.1.9",
"prettier": "3.4.2",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"typescript-eslint": "8.20.0"
},
"dependencies": {
"@types/bcrypt": "5.0.2",
"@types/express-validator": "3.0.2",
"@types/node-cache": "4.1.3",
"@types/winston": "2.4.4",
"bcrypt": "5.1.1",
"cors": "2.8.5",
"dotenv": "16.4.7",
"express": "4.21.2",
"express-rate-limit": "7.5.0",
"express-validator": "7.2.1",
"jsonwebtoken": "9.0.2",
"mysql2": "3.12.0",
"node-cache": "5.1.2",
"winston": "3.17.0"
}
}