-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.67 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.67 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
86
87
88
89
90
91
92
93
94
95
{
"name": "template-expressjs-api",
"version": "1.0.0",
"description": "Template description",
"main": "dist/app.js",
"scripts": {
"grunt": "grunt",
"build": "npm run grunt",
"install-packages": "npm uninstall graphql && npm install && npm install graphql@16",
"compile": "npm run grunt && npm run grunt watch",
"build-watch": "npm run grunt watch",
"test": "npm run build && jest"
},
"keywords": [
"keywords_here"
],
"author": {
"name": "Tsalmas Anastasios",
"url": "https://tsalmas.com",
"github": "https://github.com/Tsalmas-Anastasios"
},
"homepage": "https://schillz.com",
"repository": {
"type": "git",
"url": ""
},
"license": "ISC",
"dependencies": {
"@types/morgan": "^1.9.9",
"@types/mysql": "^2.15.26",
"@types/nodemailer": "^6.4.15",
"@types/nodemailer-direct-transport": "^1.0.35",
"@types/nodemailer-smtp-transport": "^2.7.8",
"@types/passport": "^1.0.16",
"@types/passport-local": "^1.0.38",
"axios": "^1.9.0",
"bcrypt": "^5.1.1",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-mysql-session": "^3.0.2",
"express-session": "^1.18.0",
"graphql": "^16.10.0",
"graphql-iso-date": "^3.6.1",
"graphql-type-json": "^0.3.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.45",
"mongoose": "^8.10.1",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"nanoid": "^3.1.24",
"nodemailer": "^6.9.14",
"passport": "^0.7.0",
"passport-facebook": "^3.0.0",
"passport-google-auth": "^1.0.2",
"passport-google-oauth2": "^0.2.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pg": "^8.14.1",
"slugify": "^1.6.6",
"socket.io": "^4.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/axios": "^0.14.4",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jest": "^29.5.14",
"@types/mongoose": "^5.11.97",
"@types/passport-google-oauth2": "^0.1.8",
"@types/pg": "^8.11.13",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^9.0.8",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-newer": "^1.3.0",
"grunt-ts": "^6.0.0-beta.22",
"grunt-tslint": "^5.0.2",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"nodemon": "^3.1.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.6",
"typescript": "^5.4.5",
"wait-on": "^8.0.3"
}
}