-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.11 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
{
"name": "undici-fastify-repro",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently npm:start-* --sequential npm:rename-log",
"start-fastify": "cd ./apps/fastify && PORT=3001 npm run start",
"start-express-hang": "cd ./apps/express && PORT=3002 npm run start-hanging",
"start-express-3003": "cd ./apps/express && PORT=3003 npm run start",
"start-express-3004": "cd ./apps/express && PORT=3004 npm run start",
"start-traffic": "autocannon -d 60 http://localhost:3001/repro",
"install-fastify": "cd ./apps/fastify && npm install",
"install-express": "cd ./apps/express && npm install",
"postinstall": "concurrently npm:install-*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelgoin/undici-fastify-repro.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/michaelgoin/undici-fastify-repro/issues"
},
"homepage": "https://github.com/michaelgoin/undici-fastify-repro#readme",
"devDependencies": {
"autocannon": "^7.7.0",
"concurrently": "^7.0.0"
}
}