-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.75 KB
/
package.json
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
{
"name": "expressjs-api-template",
"version": "1.0.0",
"description": "Template to use when want to create an ExpressJS Rest API",
"main": "dist/app.js",
"scripts": {
"grunt": "grunt",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": {
"name": "Tsalmas Anastasios",
"url": "https://tsalmas.com",
"github": "https://github.com/tsalmas-anastasios"
},
"homepage": "https://tsalmas.com",
"repository": {
"type": "git",
"url": "https://github.com/Tsalmas-Anastasios/expressjs-api-template"
},
"license": "ISC",
"dependencies": {
"@types/morgan": "^1.9.9",
"@types/mysql": "^2.15.26",
"@types/passport": "^1.0.16",
"@types/passport-local": "^1.0.38",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-mysql-session": "^3.0.2",
"express-session": "^1.18.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.45",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"nanoid": "^3.1.24",
"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",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/passport-google-oauth2": "^0.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",
"nodemon": "^3.1.0",
"typescript": "^5.4.5"
}
}