-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
{
"name": "pokedex-api",
"version": "0.2.3",
"description": "This is a skills test project. Created with NodeJS.",
"main": "dist/main.js",
"scripts": {
"start": "node dist/main.js",
"watch": "nodemon --exec ts-node -r tsconfig-paths/register main.ts",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch"
},
"engines": {
"node": ">=12.6.0"
},
"author": "Efrain Peralta",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/compression": "^1.0.1",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.17.1",
"@types/jest": "^24.0.18",
"@types/jsonwebtoken": "^7.2.6",
"@types/morgan": "^1.7.37",
"@types/multer": "^1.3.10",
"@types/node": "^10.14.21",
"@types/nodemailer": "^6.2.1",
"@types/supertest": "^2.0.4",
"jest": "^24.9.0",
"nodemon": "^1.19.3",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-node": "^7.0.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"dependencies": {
"@sindresorhus/slugify": "^0.9.1",
"awilix": "^4.2.2",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-validator": "^6.2.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"nodemailer": "^6.3.1",
"pg": "^7.12.1",
"ts-simple-automapper": "^1.0.2",
"typeorm": "^0.2.19"
},
"repository": {
"type": "git",
"url": "https://github.com/Efraa/pokedex-api.git"
}
}