-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
132 lines (132 loc) · 4.46 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
{
"name": "node-mongo-express",
"version": "10.0.37",
"description": "A basic starter web app with node, express and mongoose",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"start": "node dist/main.js",
"start:development": "ENVIRONMENT_NAME=development node dist/main.js",
"build:env": "webpack-cli --config webpack/production.config.js --stats-error-details",
"build:dev": "webpack-cli --config webpack/dev.config.js --stats-error-details",
"start:local": "ENVIRONMENT_NAME=local && yarn build:dev && yarn start",
"start:sharded": "export MONGO_PORT=60000 && yarn start",
"postinstall": "link-module-alias",
"preinstall": "source /usr/local/opt/nvm/nvm.sh; nvm use; command -v link-module-alias && link-module-alias clean || true",
"format": "prettier-standard './**/**/*.js'",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .eslintignore --ignore-pattern server/bin",
"lint:eslint:fix": "eslint --ignore-path .eslintignore --ignore-pattern server/bin --fix",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged",
"test:badges": "npm run test && jest-coverage-badges --output './badges'",
"prettify": "prettier --write",
"precommit": "lint:staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wednesday-solutions/node-mongo-express.git"
},
"keywords": [
"node",
"express",
"mongo",
"mongoose",
"mongodb",
"node-express",
"node-express-mongo"
],
"author": "Wednesday Solutions",
"license": "MIT",
"engines": {
"node": "14.17.x"
},
"bugs": {
"url": "https://github.com/wednesday-solutions/node-mongo-express/issues"
},
"homepage": "https://github.com/wednesday-solutions/node-mongo-express#readme",
"dependencies": {
"auth0": "^2.40.0",
"body-parser": "^1.19.1",
"bull": "^4.8.1",
"bunyan": "^1.8.15",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-http-context": "^1.2.4",
"express-jwt": "^6.1.1",
"express-rate-limit": "^6.3.0",
"express-validator": "^6.14.0",
"helmet": "^5.0.1",
"husky": "^8.0.1",
"i18n": "^0.15.1",
"ioredis": "^5.0.5",
"jwks-rsa": "^2.0.5",
"kill-port": "^1.6.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mongoose": "6.2.4",
"mongoose-to-swagger": "^1.4.0",
"node-fetch": "2",
"nodemon": "^2.0.15",
"opossum": "^6.3.0",
"pluralize": "^8.0.0",
"response-time": "^2.3.2",
"slack-notify": "^2.0.2",
"swagger-ui-express": "^4.3.0",
"uuid": "^8.3.2",
"webpack": "^5.74.0",
"webpack-hot-middleware": "^2.25.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.18.2",
"@babel/node": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.2",
"@faker-js/faker": "^6.0.0-alpha.5",
"babel-loader": "^8.2.5",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"file-loader": "^6.2.0",
"jest": "^27.4.7",
"jest-coverage-badges": "^1.1.2",
"link-module-alias": "^1.2.0",
"mockingoose": "^2.15.2",
"pre-commit": "^1.2.2",
"prettier": "^2.6.2",
"prettier-standard": "^16.4.1",
"regenerator-runtime": "^0.13.9",
"supertest": "^6.2.2",
"terser-webpack-plugin": "^5.3.6",
"webpack-cli": "^4.10.0"
},
"precommit": "lint:staged",
"lint-staged": {
"*.js": [
"npm run lint:eslint:fix",
"git add --force",
"jest --findRelatedTests $STAGED_FILES"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"_moduleAliases": {
"utils": "./server/utils",
"middlewares": "./server/middlewares",
"server": "./server",
"api": "./server/api",
"config": "./config",
"services": "./server/services",
"database": "./server/database",
"daos": "./server/daos"
}
}