-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 983 Bytes
/
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
{
"name": "express-easy-helper",
"version": "2.5.1",
"description": "Simple helper module for express",
"main": "dist/lib.min.js",
"scripts": {
"watch": "webpack --watch --mode=development",
"build": "webpack --mode=production",
"example": "node --experimental-modules ./example/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevoj/express-easy-helper.git"
},
"keywords": [
"express-helper",
"api-helper",
"response-helper",
"node-helper",
"express-response"
],
"author": "Leonardo Rico",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevoj/express-easy-helper/issues"
},
"homepage": "https://github.com/kevoj/express-easy-helper#readme",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.0"
}
}