-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 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
{
"name": "typeapi",
"version": "0.1.0",
"description": "Prototipo base para aplicaciones n-capas en Node.",
"main": "index.js",
"scripts": {
"start": "concurrently \"tsc --watch\" \"nodemon dist/index.js\"",
"start:prod": "pm2-runtime index.js",
"build": "tsc",
"reinstall": "rm -rf node_modules && rm -rf package-lock.json && npm cache clean --force && npm install",
"test": "jest --coverage --verbose --detectOpenHandles"
},
"author": "LFE",
"license": "ISC",
"keywords": [
"node",
"api",
"n-layers",
"DDD",
"express",
"swagger",
"typeorm"
],
"dependencies": {
"@types/express": "^4.17.2",
"@types/helmet": "0.0.45",
"@types/jsonwebtoken": "^8.3.5",
"@types/node": "^12.12.8",
"@types/request": "^2.48.3",
"@types/request-promise-native": "^1.0.17",
"@types/swagger-ui-express": "^4.1.0",
"body-parser": "^1.19.0",
"concurrently": "^5.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"pg": "^7.18.1",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"swagger-ui-express": "^4.1.2",
"typeorm": "^0.2.20",
"typescript": "^3.7.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"eslint": "^6.6.0",
"jest": "^24.9.0",
"nodemon": "^2.0.1",
"ts-jest": "^24.2.0"
}
}