-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
139 lines (139 loc) · 4.74 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
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "create-nodejs-ts-app",
"version": "3.0.11",
"description": "Node express mongoose typescript boilerplate",
"main": "dist/index.js",
"bin": "bin/createNodetsApp.cjs",
"repository": "https://github.com/saisilinus/node-express-mongoose-typescript-boilerplate.git",
"bugs": {
"url": "https://github.com/saisilinus/node-express-mongoose-typescript-boilerplate/issues"
},
"author": "linus wafula saisi <[email protected]>",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=14.20.1 <19"
},
"scripts": {
"start": "pm2 start ecosystem.config.json --no-daemon",
"start:build": "tsc --build && pm2 start ecosystem.config.json --no-daemon",
"compile": "tsc --build",
"compile:watch": "tsc --build --watch",
"pre:dev": "cross-env NODE_ENV=development nodemon --experimental-modules --es-module-specifier-resolution=node dist/index.js",
"dev": "concurrently --kill-others \"yarn compile:watch\" \"yarn pre:dev\"",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest -i --colors --verbose --detectOpenHandles",
"test:ts": "cross-env NODE_OPTIONS=--experimental-vm-modules jest -i --colors --verbose --detectOpenHandles -- 'ts$'",
"test:js": "cross-env NODE_OPTIONS=--experimental-vm-modules jest -i --colors --verbose --detectOpenHandles -- 'js$'",
"test:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest -i --watchAll",
"coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest -i --coverage",
"coverage:coveralls": "cross-env NODE_OPTIONS=--experimental-vm-modules jest -i --coverage --coverageReporters=lcov",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.ts",
"prettier:fix": "prettier --write **/*.ts",
"docker:prod": "docker-compose -f docker-compose.yml -f docker-compose.prod.yml up",
"docker:dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up",
"docker:test": "docker-compose -f docker-compose.yml -f docker-compose.test.yml up",
"prepare": "husky install",
"release": "standard-version && git push --follow-tags origin master",
"commit": "git add -A && cz"
},
"keywords": [
"node",
"typescript",
"node.js",
"boilerplate",
"generator",
"express",
"rest",
"api",
"mongodb",
"mongoose",
"es6",
"es7",
"es8",
"es9",
"jest",
"docker",
"passport",
"joi",
"eslint",
"prettier"
],
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@faker-js/faker": "^6.2.0",
"@jest/globals": "^27.5.1",
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "2.8.8",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/jest": "^27.4.1",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.12",
"@types/nodemailer": "^6.4.4",
"@types/passport-jwt": "^3.0.6",
"@types/supertest": "^2.0.11",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"concurrently": "^7.1.0",
"coveralls": "^3.1.1",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^7.0.4",
"jest": "^27.4.4",
"lint-staged": "^12.1.2",
"node-mocks-http": "^1.11.0",
"nodemon": "^2.0.20",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"supertest": "^6.1.6",
"ts-jest": "^27.1.3",
"typescript": "^4.5.4"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.1.0",
"express-rate-limit": "^5.5.1",
"helmet": "^4.6.0",
"http-status": "^1.5.0",
"joi": "^17.5.0",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"mongoose": "^7.0.2",
"morgan": "^1.10.0",
"nodemailer": "^6.7.2",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"pm2": "^5.1.2",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.2.0",
"validator": "^13.7.0",
"winston": "^3.3.3",
"xss-clean": "^0.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
}
}