-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.12 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "AudioCatalogAPI",
"version": "1.0.0",
"description": "",
"main": "./src/server.ts",
"scripts": {
"start": "nodemon -r ts-node --files ./src/server.ts",
"build": "tsc",
"preserve": "npm run build",
"serve": "node -r ts-node/register/transpile-only -r tsconfig-paths/register build/server.js",
"prettier:check": "prettier --check \"*/**/*.ts\" --loglevel=warn",
"prettier:fix": "prettier --write \"*/**/*.ts\" --loglevel=warn",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"hooks:pre-commit": "npm run prettier:fix && npm run lint:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DmytroKolisnyk2/audioCatalogAPI.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DmytroKolisnyk2/audioCatalogAPI/issues"
},
"homepage": "https://github.com/DmytroKolisnyk2/audioCatalogAPI#readme",
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^8.5.9",
"bcrypt": "^5.1.0",
"cloudinary": "^1.32.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"helmet": "^6.0.0",
"i18next": "^21.10.0",
"i18next-fs-backend": "^1.1.5",
"i18next-http-middleware": "^3.2.1",
"joi": "^17.6.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"swagger-ui-express": "^4.5.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/multer": "^1.4.7",
"@types/node": "^18.7.23",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^4.3.8",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run hooks:pre-commit"
}
}
}