-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
58 lines (58 loc) · 1.68 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
{
"name": "lighthouse-viewer-root",
"version": "2.0.0",
"description": "Root of the monorepo multipackage project for the lighthouse viewer stuffs",
"main": "index.js",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lerna:release": "lerna version --conventional-commits --yes",
"lerna:deploy:ci": "lerna publish from-package --yes",
"lerna:deploy:ci:canary": "lerna publish from-package --yes --canary --preid beta --message 'chore: release new canary versions'",
"lint": "eslint --quiet",
"lint:fix": "pnpm lint --fix",
"test": "start-server-and-test demo:serve http://localhost:8080 cypress:run",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"demo:http-server": "http-server web/lighthouse-viewer/dist"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@lerna-lite/cli": "3.10.1",
"@lerna-lite/core": "3.10.1",
"@lerna-lite/publish": "3.10.1",
"@lerna-lite/version": "3.10.1",
"@types/node": "22",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"cpx2": "8.0.0",
"cross-env": "7.0.3",
"cypress": "13.17.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"http-server": "14.1.1",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"tslib": "2.8.1",
"turbo": "2.3.3",
"typescript": "5.6.3",
"vite": "6.0.5"
},
"snyk": true,
"browserslist": [
"last 1 Chrome version"
],
"volta": {
"npm": "10.9.2",
"node": "22.12.0"
},
"packageManager": "pnpm@9.15.1",
"workspaces": [
"examples/*",
"packages/*",
"web/*"
]
}