-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.94 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.94 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
{
"name": "weather-api",
"version": "1.0.0",
"engines": {
"node": "12.18.2",
"npm": "6.14.5"
},
"description": "weather api challenge. make with typescript, jest, nodejs, javascript, routing controller",
"main": "app.js",
"scripts": {
"start": "ts-node -T -r dotenv/config src/app.ts",
"copyfiles": "copyfiles --up 1 src/public/*.html dist",
"tsnd": "tsnd --respawn --transpileOnly -r dotenv/config src/app.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"tsc": "tsc"
},
"keywords": [
"weather",
"api",
"challenge",
"make",
"typescript",
"jest",
"nodejs",
"javascript",
"routing",
"controller"
],
"author": "Ing. Charles Rodriguez",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"geoip-lite": "^1.4.2",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"multer": "^1.4.2",
"reflect-metadata": "^0.1.13",
"request-ip": "^2.1.3",
"routing-controllers": "^0.9.0-alpha.4",
"typescript": "^3.9.6",
"ts-node": "^8.10.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.7",
"@types/geoip-lite": "^1.1.31",
"@types/jest": "^26.0.4",
"@types/lodash": "^4.14.157",
"@types/multer": "^1.4.3",
"@types/request-ip": "0.0.35",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"copyfiles": "^2.3.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.1.0",
"supertest": "^4.0.2",
"ts-jest": "^26.1.1",
"ts-node-dev": "^1.0.0-pre.50"
}
}