-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
62 lines (62 loc) · 2 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
{
"name": "@misterzik/espressojs",
"version": "3.2.6",
"description": "EspressoJS Introducing Espresso.JS, your ultimate Express configuration starting point and boilerplate. With its simplicity and lack of opinionation, EspressoJS offers plug-and-play configurations built on top of Express.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\"",
"start": "node cli run",
"dev": "node cli env --instance=development --port=8080 && node cli run",
"global": "node cli env --instance=global --port=8081 && node cli run",
"prod": "node cli env --instance=production --port=80 && node cli run",
"show": "node cli show",
"build-dev": "webpack --mode development",
"build-prod": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misterzik/Espresso.js.git"
},
"keywords": [
"espressojs",
"espresso js",
"espresso",
"express",
"node-express",
"express-api",
"express-server",
"express boilerplate",
"express",
"nodejs"
],
"author": "MisterZik",
"license": "MIT",
"bugs": {
"url": "https://github.com/misterzik/Espresso.js/issues"
},
"homepage": "https://github.com/misterzik/Espresso.js#readme",
"dependencies": {
"axios": "^1.4.0",
"bluebird": "^3.7.2",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"mongoose": "^7.3.1",
"dotenv": "^16.3.1",
"cors": "^2.8.5",
"finalhandler": "^1.2.0",
"compression": "^1.7.4",
"serve-static": "^1.15.0",
"serve-favicon": "^2.5.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"debug": "^4.3.4",
"@babel/core": "^7.22.5",
"amd-define-factory-patcher-loader": "^1.0.0",
"babel-loader": "^9.1.2",
"babel-preset-env": "^1.7.0"
},
"engines": {
"node": ">= 0.10.0"
}
}