-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
47
48
{
"name": "currencies-rates-api",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"distribute": "npm run build-ts && node dist/index.js",
"develop": "concurrently -k -i -p \"[{name}]\" -n \"Node,TypeScript\" -c \"yellow.bold,cyan.bold\" \"npm run watch-js\" \"npm run watch-ts\"",
"build-ts": "tsc --skipLibCheck",
"watch-ts": "tsc -w --skipLibCheck",
"watch-js": "nodemon dist/index.js"
},
"author": "Volokh I",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dayjs": "^1.10.4",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"express-winston": "^4.1.0",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.4",
"joi": "^17.4.0",
"mongoose": "^5.10.18",
"typescript": "^4.2.4",
"winston": "^3.3.3",
"winston-mongodb": "^5.0.7"
},
"devDependencies": {
"@typegoose/typegoose": "^7.4.2",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.10",
"@types/cron": "^1.7.2",
"@types/express": "^4.17.11",
"@types/express-rate-limit": "^5.1.1",
"@types/mongoose": "^5.10.5",
"@types/node": "^15.6.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"concurrently": "^6.1.0",
"eslint": "^7.27.0",
"nodemon": "^2.0.7"
}
}