-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.47 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.47 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
85
{
"name": "be.techscrum",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"engines": {
"node": "16.x"
},
"scripts": {
"test": "jest --runInBand",
"coverage": "nyc --reporter=text npm test",
"build": "npx tsc",
"init-app": "node dist/src/app/console/init.js",
"loggly": "node dist/loggly.js",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"lint": "eslint src/",
"prepare": "husky install",
"load-test": "artillery run artilleryio-load-test.yml --output .artilleryio/test.json",
"load-test-report": "artillery report --output .artilleryio/report.html .artilleryio/test.json",
"swagger-autogen": "node swagger.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/010001/be.techscrum.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"homepage": "https://bitbucket.org/010001/be.techscrum#readme",
"dependencies": {
"agenda": "^4.3.0",
"artillery": "^2.0.0-23",
"aws-sdk": "^2.1176.0",
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"escape-string-regexp": "^4.0.0",
"express": "^4.18.1",
"express-rate-limit": "^6.4.0",
"express-validator": "^6.14.1",
"helmet": "^5.1.0",
"http-status": "^1.5.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.4",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"openai": "^3.2.1",
"stripe": "^11.14.0",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.4.0",
"whois-json": "^2.0.4",
"winston": "^3.7.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"concurrently": "^7.1.0",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"mongodb-memory-server": "^8.8.0",
"nodemon": "^2.0.16",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"sinon": "^14.0.0",
"supertest": "^6.3.3",
"swagger-autogen": "^2.22.0",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.6.4"
},
"optionalDependencies": {
"fsevents": "2.3.2"
}
}