-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.68 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
73
74
75
76
77
78
79
80
81
82
{
"name": "mycloud",
"version": "1.0.0",
"description": "MyCloud is a file server written in Node.js that provides file management capabilities with unlimited storage. ",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/src/index.js",
"dev": "nodemon",
"lint": "eslint --ext .ts src && prettier --check \"**/*.ts\"",
"lint:check": "npm run lint",
"lint:fix": "eslint --ext .ts src --fix",
"prettier": "prettier --write \"**/*.ts\"",
"format": "npm run lint:fix && npm run prettier",
"prepare": "husky install",
"test": "jest",
"test:unit": "jest test.ts",
"migrate:up": "npx ts-node node_modules/.bin/migrate-mongo up",
"migrate:down": "npx ts-node node_modules/.bin/migrate-mongo down",
"migrate:create": "npx migrate-mongo create",
"migrate:status": "npx migrate-mongo status"
},
"keywords": [],
"author": "Pavlo Kolodka",
"license": "MIT",
"dependencies": {
"@sentry/node": "^7.54.0",
"@types/cors": "^2.8.13",
"bcrypt": "^5.0.1",
"connect-busboy": "^1.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.4",
"node-telegram-bot-api": "^0.58.0",
"nodemailer": "^6.9.2",
"passport": "^0.6.0",
"passport-facebook": "^3.0.0",
"passport-github": "^1.1.0",
"passport-google-oauth2": "^0.2.0",
"passport-linkedin-oauth2": "^2.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"winston": "^3.9.0",
"winston-transport": "^4.5.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/connect-busboy": "^1.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.0.3",
"@types/node-telegram-bot-api": "^0.57.1",
"@types/nodemailer": "^6.4.7",
"@types/passport": "^1.0.12",
"@types/passport-facebook": "^2.1.11",
"@types/passport-github": "^1.1.7",
"@types/passport-google-oauth2": "^0.1.5",
"@types/passport-linkedin-oauth2": "^1.5.3",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"migrate-mongo": "^10.0.0",
"nodemon": "^2.0.19",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}