-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.79 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.79 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
{
"name": "dumo_lms_api",
"version": "1.0.0",
"description": "DUMO LMS API",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "nodemon src/app.js",
"start": "sequelize-cli db:migrate && node src/app.js",
"lint": "eslint src/ test/ documentation/",
"fix-lint": "eslint src/ test/ documentation/ --fix",
"db:migrate": "sequelize-cli db:migrate",
"db:migrate:undo": "sequelize-cli db:migrate:undo",
"test": "mocha test/unit test/integration test/e2e --recursive --colors --timeout 10000",
"test--unit": "mocha test/unit --recursive --colors --timeout 10000",
"test--integration": "mocha test/integration --recursive --colors --timeout 10000",
"test--e2e": "mocha test/e2e --recursive --colors --timeout 10000"
},
"repository": {
"type": "git",
"url": "https://git.chigisoft.dev/adim/acadabay_api.git"
},
"author": "Chigisoft",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.2.0",
"aws-sdk": "^2.791.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fastest-validator": "^1.5.1",
"googleapis": "^58.0.0",
"helmet": "^3.22.1",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.10.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"mysql2": "^2.1.0",
"node-cli-colors": "^1.2.0",
"node-cron": "^2.0.3",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"sequelize": "^5.21.12",
"slugify": "^1.4.5",
"supertest": "^4.0.2",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4",
"uuid": "^8.3.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.2.0",
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"sequelize-cli": "^6.2.0"
}
}