-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 905 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 905 Bytes
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
{
"name": "webjsx-performance",
"private": true,
"type": "module",
"workspaces": [
"packages/bench-utils",
"packages/webjsx",
"packages/react"
],
"scripts": {
"clean": "npm run clean --workspaces",
"reinstall-common": "cd packages/bench-utils && rm -rf node_modules && npm install",
"reinstall-test-packages": "npm run reinstall --workspaces --if-present",
"reinstall": "npm run reinstall-common && npm run reinstall-test-packages && npm i",
"build-common": "cd packages/bench-utils && npm run build",
"build": "npm run build-common && npm run build --workspaces",
"react-tests": "cd packages/react && npm run benchmark",
"webjsx-tests": "cd packages/webjsx && npm run benchmark"
},
"dependencies": {
"open": "^10.2.0"
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
"benchmark": "^2.1.4",
"typescript": "^5.9.2"
}
}