-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "cryptocurrency_converter",
"version": "1.0.1",
"description": "A simple cryptocurrency converter using CoinGecko API",
"main": "index.js",
"env-file": ".env",
"scripts": {
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "NODE_ENV=development nodemon index.js",
"start": "NODE_ENV=production node index.js"
},
"keywords": [],
"author": "Karthikeya (lurkingryuu)",
"license": "ISC",
"dependencies": {
"axios": "^1.6.8",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-validator": "^7.0.1",
"http-status": "^1.7.4",
"luxon": "^3.4.4",
"mongoose": "^8.3.1",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"nodemon": "^3.1.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.0.0",
"eslint": "^8.57.0",
"globals": "^15.0.0",
"prettier": "^3.2.5"
}
}