-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1000 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
39
{
"name": "@koeroesi86/node-webserver",
"version": "1.0.0",
"description": "A local Lambda implementation",
"main": "index.js",
"author": {
"name": "Krisztian Korosi",
"url": "https://github.com/Koeroesi86"
},
"repository": "github:Koeroesi86/node-webserver",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "node scripts/tests.js",
"start": "nodemon scripts/server.js",
"generate-version": "node scripts/version.js"
},
"license": "MIT",
"dependencies": {
"@koeroesi86/node-lambda-invoke": "^1.0.21-d1fa702",
"@koeroesi86/node-worker-express": "^22.3.12-fd2e588",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"find-free-port": "^2.0.0",
"http-proxy": "^1.17.0",
"moment": "^2.29.1",
"pidusage": "^3.0.0",
"rimraf": "^3.0.2",
"uuid": "^8.3.2",
"vhost": "^3.0.2"
},
"devDependencies": {
"etag": "^1.8.1",
"jest": "^27.5.1",
"mime-types": "^2.1.35",
"nodemon": "^2.0.15"
}
}