-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.18 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.18 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
{
"name": "circle_hackathon",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "nodemon -r dotenv/config --experimental-json-modules src/index.js",
"prod": "node --env-file=.env ./src/index.js",
"sonar-scan": "sonar-scanner",
"pre-commit": "npm run compare-env && lint-staged --allow-empty",
"prettier:check": "prettier --check --config .prettierrc \"**/*.js\"",
"prettier:write": "prettier --write --config .prettierrc \"**/*.js\"",
"lint:check": "eslint --config .eslintrc.json \"**/*.js\"",
"lint:fix": "eslint --fix --config .eslintrc.json \"**/*.js\"",
"compare-env": "node ./scripts/compareEnv.js",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.637.0",
"@aws-sdk/client-s3": "^3.658.1",
"@aws-sdk/lib-storage": "^3.658.1",
"@aws-sdk/s3-request-presigner": "^3.658.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"express-validator": "^7.2.0",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"mongoose": "^8.8.3",
"mongoose-aggregate-paginate-v2": "^1.1.2",
"morgan": "^1.10.0",
"multer": "1.4.5-lts.1",
"nyc": "^17.0.0",
"request-ip": "^3.3.0",
"validator": "^13.12.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-syntax-import-assertions": "^7.25.6",
"@babel/preset-env": "^7.25.4",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@faker-js/faker": "^8.4.1",
"chai": "^5.1.1",
"chai-http": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.2",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"mailslurp-client": "^15.20.2",
"mongodb-memory-server": "^10.0.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"supertest": "^7.0.0"
}
}