-
Notifications
You must be signed in to change notification settings - Fork 652
/
package.json
94 lines (94 loc) · 3.77 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "lerna exec --parallel 'rm -rf ./dist ./.cache'",
"ci:dogfood": "./scripts/ci-dogfood.sh",
"build": "lerna run --scope @lhci/server --scope @lhci/viewer build",
"build:storybook": "lerna run --scope @lhci/server build:storybook",
"build:watch": "lerna run --scope @lhci/server build:watch --stream",
"build:source-map-explorer": "lerna run --scope @lhci/server build:source-map-explorer",
"start": "node ./packages/cli/src/cli.js",
"start:seed-data-in-viewer": "node ./scripts/open-seed-report-in-viewer.js",
"start:seed-database": "node ./scripts/seed-database.js ./packages/cli/test/fixtures/lighthouserc.js",
"start:server": "node ./packages/cli/src/cli.js server --config=./packages/cli/test/fixtures/lighthouserc.js",
"update:fixture-seed-data": "node ./scripts/update-seed-fixtures.js",
"test:fixture-seed-data": "jest '--testMatch=**/scripts/diff-seed-fixture.js'",
"test": "npm run test:typecheck && npm run test:lint && npm run test:unit",
"test:quick": "npm run test:typecheck && npm run test:lint && npm run test:unit -- --testPathIgnorePatterns=\"cli.test.js\"",
"test:typecheck": "tsc -p .",
"test:lint": "npm run test:lint:js && npm run test:lint:jsx && npm run test:lint:tests",
"test:lint:fix": "npm run test:lint:js -- --fix && npm run test:lint:jsx -- --fix && npm run test:lint:tests -- --fix",
"test:lint:js": "eslint ./packages/*/src",
"test:lint:jsx": "eslint ./packages/server/src/ui ./packages/viewer/src/ui",
"test:lint:tests": "eslint ./packages/*/test",
"test:docker": "bash scripts/test-docker.sh",
"test:unit": "jest --maxWorkers=2",
"test:unit:ci": "jest"
},
"devDependencies": {
"@chialab/esbuild-plugin-html": "^0.17.3",
"@patrickhulce/scripts": "^0.4.0",
"@storybook/addon-actions": "^7.6.4",
"@storybook/addon-links": "^7.6.4",
"@storybook/addon-storyshots": "^7.6.4",
"@storybook/addon-storyshots-puppeteer": "^7.6.4",
"@storybook/addons": "^7.6.4",
"@storybook/preact": "^7.6.4",
"@storybook/preact-webpack5": "^7.6.4",
"@testing-library/dom": "^5.4.0",
"@types/bluebird": "^3.5.42",
"@types/body-parser": "^1.17.0",
"@types/compression": "^1.0.1",
"@types/cron": "^1.7.2",
"@types/d3": "^5.7.2",
"@types/debug": "^4.1.5",
"@types/express": "^4.16.1",
"@types/inquirer": "^6.0.3",
"@types/isomorphic-fetch": "^0.0.34",
"@types/jest": "^24.0.15",
"@types/js-yaml": "^3.12.1",
"@types/morgan": "^1.7.35",
"@types/node": "^11.13.2",
"@types/plotly.js": "^1.44.9",
"@types/tmp": "^0.1.0",
"@types/uuid": "^8.3.0",
"@types/yargs": "^12.0.8",
"@types/yargs-parser": "^11.0.0",
"@typescript-eslint/parser": "^6.14.0",
"conventional-commits-parser": "^3.0.0",
"esbuild": "^0.19.9",
"eslint": "^8.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-storybook": "^0.6.15",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.3",
"jest-circus": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"jest-fetch-mock": "^3.0.3",
"jest-image-snapshot": "^4.5.1",
"lerna": "^3.22.0",
"mysql2": "^2.1.0",
"pg": "^8.2.1",
"pg-hstore": "^2.3.3",
"preact-render-to-json": "^3.6.6",
"prettier": "2.5.1",
"prop-types": "^15.7.2",
"puppeteer": "^21.6.1",
"puppeteer-core": "^21.6.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"sqlite3": "^5.1.2",
"storybook": "^7.6.4",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}