-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
64 lines (64 loc) · 1.76 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
{
"name": "react-component-benchmark",
"version": "2.0.0",
"description": "A component utility for estimating benchmarks of React components",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"source": "./src/index.ts",
"types": "./dist/src/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/paularmstrong/react-comonent-benchmark"
},
"homepage": "https://github.com/paularmstrong/react-component-benchmark",
"author": "Paul Armstrong <[email protected]>",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "node scripts/build.mjs",
"clean": "rimraf dist",
"lint": "yarn lint:cmd --fix",
"lint:cmd": "eslint ./",
"format": "prettier --ignore-unknown",
"pre-release": "release-it --preRelease=alpha",
"release": "release-it",
"test": "jest",
"tsc:check": "tsc -p tsconfig.check.json"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.7",
"@types/react": "^18.0.24",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"esbuild": "^0.15.12",
"esbuild-jest": "^0.5.0",
"esbuild-node-externals": "^1.5.0",
"eslint": "^8.26.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.1",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"release-it": "^15.5.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
},
"peerDependencies": {
"react": "^18"
},
"files": [
"dist/",
"LICENSE",
"README.md"
]
}