-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.08 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
{
"name": "node-server-template",
"version": "2.0.0",
"description": "Just universal server",
"repository": "https://github.com/Vladinho10/node-server-template",
"author": "Vlad Mkhitaryan",
"license": "ISC",
"keywords": [
"swagger",
"express",
"mongodb",
"docker",
"kubernetes",
"jenkins",
"mongoose",
"template",
"server",
"nodemailer",
"jsonwebtoken",
"log4js",
"morgan",
"socket.io",
"mongoose"
],
"engines": {
"node": "16.x"
},
"main": "index.js",
"mocha": {
"diff": true,
"extension": [
"js"
],
"slow": "75",
"timeout": "20000"
},
"scripts": {
"start": "node index",
"nodemon": "./node_modules/nodemon/bin/nodemon.js index",
"test": "mocha ./test/*.e2e.js",
"migrate-up": "node_modules/sequelize-cli/lib/sequelize db:migrate",
"migrate-create": "node_modules/sequelize-cli/lib/sequelize migration:create",
"migrate-down": "node_modules/sequelize-cli/lib/sequelize db:migrate:undo:all",
"seed-up": "node_modules/sequelize-cli/lib/sequelize db:seed:all",
"seed-down": "node_modules/sequelize-cli/lib/sequelize db:seed:undo:all"
},
"dependencies": {
"@types/sequelize": "^4.28.14",
"@vonage/server-sdk": "^3.0.12",
"@vonage/voice": "^1.0.9",
"axios": "^1.2.2",
"chai-http": "^4.3.0",
"cheerio": "^1.0.0-rc.12",
"compose-middleware": "^5.0.1",
"dotenv-flow": "^3.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"http-status": "^1.4.2",
"images-to-pdf": "^1.0.3",
"jsonwebtoken": "^8.5.1",
"log4js": "^6.4.0",
"mongoose": "^6.4.6",
"morgan": "^1.9.1",
"multer": "^1.4.3",
"mysql2": "^2.3.3",
"ngrok": "^4.3.3",
"nodemailer": "^6.7.0",
"sequelize": "^6.23.0",
"sequelize-cli": "^6.4.1",
"socket.io": "^4.3.1",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.3"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.0.1",
"mocha": "^9.1.3",
"mock-fs": "^5.1.1",
"nodemon": "^2.0.13",
"sinon": "^11.1.2"
}
}