-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.64 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.64 KB
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
{
"name": "@builder.io/framework-performance",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"autocannon": "autocannon",
"fw-install": "ts-node-esm --transpileOnly ./src/scripts/install",
"build": "ts-node-esm --transpileOnly ./src/scripts/build",
"clean": "ts-node-esm --transpileOnly ./src/scripts/clean",
"copy": "ts-node-esm --transpileOnly ./src/scripts/copy",
"serve": "ts-node-esm --transpileOnly ./src/scripts/serve",
"dev": "ts-node-esm --transpileOnly ./src/scripts/dev",
"kill": "ts-node-esm --transpileOnly ./src/scripts/kill",
"measure": "ts-node-esm --transpileOnly ./src/scripts/measure",
"measure-ssr": "ts-node-esm --transpileOnly ./src/scripts/measure-ssr",
"measure-throughput": "ts-node-esm --transpileOnly ./src/scripts/measure-throughput",
"measure-flow": "ts-node-esm --transpileOnly ./src/scripts/measure-flow",
"measure-navigation": "ts-node-esm --transpileOnly ./src/scripts/measure-navigation",
"report": "ts-node-esm --transpileOnly ./src/scripts/gen-simple-reports"
},
"engines": {
"node": ">=16.14.0"
},
"author": "Steve Sewell (steve@builder.io)",
"dependencies": {
"autocannon": "^7.9.0",
"chalk": "^5.0.1",
"chrome-launcher": "^0.15.1",
"lighthouse": "^9.5.0-dev.20220818",
"node-fetch": "^3.2.10",
"open": "^8.4.0",
"puppeteer": "^16.1.0",
"solid-styled-components": "^0.28.4",
"ts-node": "^10.9.1",
"zx": "^7.0.8"
},
"devDependencies": {
"@swc/core": "^1.2.224",
"@swc/helpers": "^0.4.3",
"@types/autocannon": "^7.6.1",
"prettier": "2.7.1",
"regenerator-runtime": "^0.13.9"
}
}