-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.27 KB
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
83
84
{
"name": "selody",
"version": "1.1.0",
"description": "selody - meeting planner",
"type": "commonjs",
"scripts": {
"dev": "nodemon src/app.js",
"build": "echo \"Error: no build script specified\" && exit 1",
"lint": "eslint --fix src/",
"test": "cross-env NODE_ENV=test jest --setupFiles dotenv/config --coverage --detectOpenHandles --forceExit",
"prepare": "husky install ./.husky",
"swagger-autogen": "node src/swagger/swagger.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xERN-shareANDcommunity/Backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/xERN-shareANDcommunity/Backend/issues"
},
"homepage": "https://github.com/xERN-shareANDcommunity/Backend#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.414.0",
"@joi/date": "^2.1.0",
"aws-sdk": "^2.1459.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cloudinary": "^1.37.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-fileupload": "^1.4.0",
"express-rate-limit": "^6.7.0",
"fs": "^0.0.1-security",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^3.0.1",
"mime": "^3.0.0",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"mysql2": "^3.2.0",
"node-cron": "^3.0.2",
"path": "^0.12.7",
"request": "^2.88.2",
"rrule": "^2.7.2",
"sequelize": "^6.31.0",
"swagger-autogen": "^2.23.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"transliterate": "^1.0.1"
},
"devDependencies": {
"concurrently": "^8.0.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
"jest": "^27.2.4",
"lint-staged": "^13.2.0",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"supertest": "^6.3.3"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/src/errors/"
]
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}