-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.79 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
{
"name": "@preact/benchmarks",
"type": "module",
"private": true,
"version": "0.0.1",
"description": "Repository of benchmarks for Preact",
"scripts": {
"analyze": "node cli/bin/preact-bench.js analyze",
"bench": "node cli/bin/preact-bench.js bench",
"dev": "node cli/bin/preact-bench.js dev",
"format": "prettier --no-error-on-unmatched-pattern --write **/*.{js,jsx,ts,tsx,css,md,html,yml,yaml,json}",
"lint": "pnpm lint:format && pnpm tsc",
"lint:format": "prettier --no-error-on-unmatched-pattern --check **/*.{js,jsx,ts,tsx,css,md,html,yml,yaml,json}",
"lint-staged": "lint-staged",
"prepare": "husky install",
"start": "node cli/bin/preact-bench.js start",
"tsc": "npm run tsc:apps && npm run tsc:cli",
"tsc:apps": "tsc -p apps/jsconfig.json",
"tsc:cli": "tsc -p cli/jsconfig.json",
"tsc:deps": "tsc -p dependencies/jsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/preactjs/benchmarks.git"
},
"keywords": [
"Preact",
"benchmarks",
"performance"
],
"authors": [
"The Preact Authors (https://github.com/preactjs/preact/contributors)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/preactjs/benchmarks/issues"
},
"homepage": "https://github.com/preactjs/benchmarks#readme",
"lint-staged": {
"**/*.{js,jsx,ts,tsx,css,md,html,yml,yaml,json}": [
"prettier --write"
]
},
"devDependencies": {
"chromedriver": "*",
"concurrently": "^8.2.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
},
"volta": {
"node": "20.11.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}