-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.84 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
{
"name": "api-mymatch",
"version": "1.0.0",
"description": "api for mymatch project",
"main": "app.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "npm run build && npm run dev:watch",
"dev:watch": "concurrently -k \"tsc -w\" \"nodemon -L ./dist/app.js\"",
"test": "mocha test/*.js --exit",
"start": "npm run build && node ./dist/app.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Andres0919/api-mymatch.git"
},
"keywords": [
"api",
"portfolio"
],
"author": "Andrés Posada",
"license": "ISC",
"bugs": {
"url": "https://github.com/Andres0919/api-mymatch/issues"
},
"homepage": "https://github.com/Andres0919/api-mymatch#readme",
"dependencies": {
"@fastify/cors": "^7.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"chalk": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"express-pino-logger": "^7.0.0",
"fast-glob": "^3.2.11",
"fastify": "^3.29.0",
"helmet": "^5.0.2",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.3",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"pino-pretty": "^7.6.1",
"redis": "^4.1.0",
"sequelize": "^6.19.0",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-pino-logger": "^4.0.3",
"@types/morgan": "^1.9.3",
"@types/redis": "^4.0.10",
"@types/swagger-ui-express": "^4.1.3",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"concurrently": "^7.1.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.16",
"supertest": "^6.2.3",
"tslint": "^6.1.3",
"typescript": "^4.6.4"
},
"volta": {
"node": "16.15.0",
"npm": "8.9.0"
}
}