-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
152 lines (152 loc) · 3.75 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
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"private": true,
"name": "nodetomic",
"version": "1.0.0",
"description": "Node, Express, MongoDB, Sockets, Redis, JWT, Webpack, Babel 7",
"main": "src/index.js",
"scripts": {
"start": "webpack --watch --mode=development",
"build": "webpack --mode=production",
"test": "jest",
"serve": "yarn build && node dist/app.js"
},
"keywords": [
"nodetomic",
"nodejs",
"boilerplate",
"express",
"redis",
"mongodb",
"node-boilerplate",
"express-boilerplate"
],
"repository": {
"type": "git",
"url": "https://github.com/kevoj/nodetomic.git"
},
"author": {
"name": "leonardo Rico",
"email": "[email protected]",
"url": "https://github.com/kevoj"
},
"license": "MIT",
"dependencies": {
"apisauce": "^2.1.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-easy-helper": "^2.5.1",
"express-fileupload": "^1.2.1",
"express-handlebars": "^5.3.3",
"express-jsdoc-swagger": "^1.6.4",
"express-rate-limit": "^5.3.0",
"helmet": "^4.6.0",
"ioredis": "^4.27.8",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"moment": "^2.29.1",
"mongoose": "^5.13.7",
"mongoose-aggregate-paginate-v2": "^1.0.42",
"mongoose-sequence": "^5.3.1",
"morgan": "^1.10.0",
"request-ip": "^2.1.3",
"socket.io": "^4.1.3",
"socket.io-redis": "^6.1.1",
"validator": "13.6.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/register": "^7.15.3",
"@babel/runtime": "^7.15.3",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"babel-plugin-root-import": "^6.6.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-webpack-plugin": "^3.0.1",
"jest": "^27.0.6",
"nodemon-webpack-plugin": "^4.5.2",
"prettier": "^2.3.2",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0",
"webpack-node-externals": "^3.0.0"
},
"babel": {
"presets": [
"@babel/env"
],
"plugins": [
[
"babel-plugin-root-import",
{
"rootPathPrefix": "@/",
"rootPathSuffix": "./src"
}
],
"@babel/plugin-transform-async-to-generator",
"@babel/plugin-proposal-class-properties",
"@babel/transform-runtime",
"@babel/plugin-syntax-dynamic-import"
]
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"endOfLine": "auto"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testTimeout": 30000,
"setupFilesAfterEnv": [
"<rootDir>/__tests__/setupTests.js"
],
"testMatch": [
"<rootDir>/__tests__/**/*?((?!!)*.)+(test).[jt]s?(x)"
]
},
"eslintConfig": {
"env": {
"commonjs": true,
"es6": true,
"node": true
},
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"extends": [
"prettier",
"eslint:recommended"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "warn",
"no-var": "warn",
"no-unused-vars": "warn"
}
}
}