-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 941 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
{
"name": "ldd-pwa",
"version": "1.0.0",
"description": "showing how to go from website to PWA using Lighthouse",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently npm:start-*",
"start-http2-server": "lws",
"start-http-https-redirect-server": "lws -c lws.redirect.config.js",
"audit": "concurrently --kill-others npm:audit-*",
"audit-start-servers": "npm run start",
"audit-start-lighthouse": "lighthouse --output json --output-path ./lighthouse-report.json --chrome-flags=\"--headless --no-sandbox\" http://localhost:8000",
"lh": "lhci autorun"
},
"author": "David LACOURT <[email protected]>",
"license": "MIT",
"devDependencies": {
"concurrently": "7.0.0",
"firebase-tools": "10.1.4",
"lighthouse": "9.3.1",
"local-web-server": "5.1.1",
"lws-mock-response": "2.0.0",
"lws-redirect": "2.1.2"
}
}