-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
126 lines (126 loc) · 3.86 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "azordev-backend",
"version": "0.1.1",
"description": "Template for backends with NodeJS + Express, ready to use in production!",
"main": "index.js",
"scripts": {
"start": "pm2-runtime start ./ecosystem.config.js --env production",
"build": "tsc -p .",
"dev": "tsnd --respawn -r tsconfig-paths/register -r dotenv/config src/server/index.ts",
"typeorm": "node ./node_modules/typeorm/cli.js",
"test:watch": "jest --watch -w=100%",
"lint": "eslint src --ext .js,.ts --color --cache -f table",
"lint-fix": "eslint src --fix src/**/*.ts",
"spelling": "cspell lint --no-must-find-files 'src/**/*.{js,ts,md}'",
"spelling:ci": "cspell run --no-must-find-files",
"eslint": "eslint src --color --cache -f table",
"eslint:ci": "eslint --color --cache -f table",
"lint:js:fix": "eslint src --fix",
"prettier": "prettier src --write --config ./.prettierrc.js",
"prettier:ci": "prettier --list-different",
"test": "jest --passWithNoTests --coverage -w=100%",
"test:c": "jest --coverage --watchAll=false --ci --passWithNoTests",
"test:cw": "jest --coverage --watchAll",
"check": "npm run eslint && npm run prettier && npm run test:c",
"lefthook": "lefthook run lint",
"clean": "./scripts/clean-package.sh"
},
"dependencies": {
"compression": "~1.7.4",
"cors": "~2.8.5",
"errorhandler": "~1.5.1",
"express": "~4.17.2",
"express-jwt": "~6.1.0",
"express-rate-limit": "~6.2.0",
"express-validator": "~6.14.0",
"helmet": "~5.0.2",
"http-status-codes": "~2.2.0",
"jsonwebtoken": "~8.5.1",
"memory-cache": "~0.2.0",
"method-override": "~3.0.0",
"morgan": "~1.10.0",
"pg": "~8.7.3",
"reflect-metadata": "~0.1.13",
"response-time": "~2.3.2",
"typeorm": "~0.2.41",
"winston": "~3.5.1"
},
"devDependencies": {
"@arkweid/lefthook": "~0.7.7",
"@commitlint/cli": "~16.1.0",
"@commitlint/config-conventional": "~16.0.0",
"@types/body-parser": "~1.19.2",
"@types/cors": "~2.8.12",
"@types/es6-shim": "~0.31.42",
"@types/express": "~4.17.13",
"@types/jest": "~27.4.0",
"@types/node": "~17.0.17",
"@types/supertest": "~2.0.11",
"@typescript-eslint/eslint-plugin": "~4.33.0",
"@typescript-eslint/parser": "~4.33.0",
"cspell": "~5.18.0",
"dotenv": "~16.0.0",
"eslint": "~7.32.0",
"eslint-config-nfour": "~2.2.0",
"eslint-config-prettier": "~8.3.0",
"eslint-config-standard": "~16.0.3",
"eslint-config-standard-typescript-prettier": "~5.0.0",
"eslint-plugin-import": "~2.24.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~3.4.1",
"eslint-plugin-promise": "~5.1.0",
"jest": "~27.5.0",
"pm2": "~5.2.0",
"prettier": "~2.3.2",
"supertest": "~6.2.2",
"ts-jest": "~27.1.3",
"ts-node": "~10.4.0",
"ts-node-dev": "~1.1.8",
"typescript": "~4.5.5"
},
"engines": {
"node": ">=16.3.0"
},
"private": true,
"keywords": [
"nodejs",
"expressjs",
"backend",
"eslint",
"middlewares",
"api",
"pm2",
"vscode"
],
"author": {
"name": "Israel Laguan",
"email": "[email protected]",
"url": "https://github.com/Israel-Laguan"
},
"contributors": [
{
"name": "Victor Peña",
"email": "[email protected]",
"url": "https://github.com/Katsu08"
},
{
"name": "Emmanuel Azócar",
"email": "[email protected]",
"url": "https://github.com/e-azocar"
},
{
"name": "Angelica Molina",
"email": "[email protected]",
"url": "https://github.com/angelik0828"
}
],
"license": "Apache 2",
"repository": {
"type": "git",
"url": "git+https://github.com/Azordev/backend-template.git"
},
"bugs": {
"url": "https://github.com/Azordev/backend-template/issues"
},
"homepage": "https://github.com/Azordev/backend-template#readme"
}