-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.8 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.8 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
{
"name": "backend-training",
"version": "1.0.0",
"description": "<h4>1. Update Package Lists: </h4>",
"main": "index.js",
"scripts": {
"start": "nodemon dist/server.js",
"test": "jest",
"coverage": "jest --coverage",
"prepare": "husky install",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"sonarqube": "node sonarqube-scanner.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@superfaceai/one-sdk": "2.4.2",
"@types/moment-timezone": "^0.5.30",
"@types/multer": "^1.4.11",
"@types/pako": "^2.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/winston": "^2.4.4",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"dotenv": "16.3.1",
"express": "^4.18.2",
"express-jwt": "8.4.1",
"joi": "17.11.0",
"js-yaml": "^4.1.0",
"jsonwebtoken": "9.0.2",
"moment-timezone": "^0.5.44",
"mongodb": "^6.3.0",
"mongodb-memory-server": "^9.1.3",
"mongoose": "^8.0.3",
"multer": "^1.4.5-lts.1",
"pako": "^2.1.0",
"swagger": "^0.7.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"v8": "^0.1.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "4.17.21",
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"@types/yamljs": "^0.2.34",
"@typescript-eslint/eslint-plugin": "6.13.1",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "15.0.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"sonarqube-scanner": "^3.3.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"yamljs": "^0.3.0"
}
}