-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
72 lines (72 loc) · 2.13 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
{
"name": "@reduxjs/react-redux-benchmarks",
"version": "0.1.0",
"description": "benchmark suite and runner for react-redux",
"main": "index.js",
"scripts": {
"start": "tsx ./runBenchmarks.ts",
"format": "prettier --write \"sources/**/src/*.{js,jsx,ts,tsx}\" *.js",
"build": "node scripts/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reduxjs/react-redux-benchmarks.git"
},
"keywords": [
"react-redux",
"benchmark",
"redux"
],
"author": "Gregory Beaver <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/reduxjs/react-redux-benchmarks/issues"
},
"homepage": "https://github.com/reduxjs/react-redux-benchmarks#readme",
"dependencies": {
"@reduxjs/toolkit": "^1.9.5",
"@replayio/playwright": "^1.0.3",
"@testing-library/dom": "^8.5.0",
"@testing-library/user-event": "^13.2.1",
"chalk": "4.1.2",
"chance": "^1.1.8",
"cli-table2": "^0.2.0",
"cross-spawn": "^6.0.5",
"events": "^3.0.0",
"express": "^4.16.4",
"fps-emitter": "^1.0.0",
"glob": "^7.1.3",
"performance-mark-metadata": "^1.0.3",
"playwright": "^1.35.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.0",
"react-redux-5.1.2": "npm:[email protected]",
"react-redux-6.0.1": "npm:[email protected]",
"react-redux-7.2.5": "npm:[email protected]",
"react-redux-8.1.0-autotracking": "file:.yalc/react-redux",
"react-redux-8.1.1": "npm:[email protected]",
"recursive-copy": "^2.0.9",
"redux": "^4.1.1",
"reselect": "^4.0.0",
"seedrandom": "^3.0.5",
"tracealyzer": "^0.9.3",
"tsx": "^3.12.7",
"use-sync-external-store": "latest"
},
"devDependencies": {
"@types/cli-table2": "^0.2.3",
"@types/express": "^4.17.17",
"@types/fs-extra": "^9.0.12",
"@types/glob": "^8.1.0",
"@types/lodash": "^4.14.195",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"esbuild": "^0.17",
"esbuild-plugin-alias": "^0.1.2",
"fs-extra": "^10.0.0",
"prettier": "latest",
"typescript": "^5.1.0",
"yargs": "^17.1.1"
}
}