-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
117 lines (117 loc) · 2.49 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "react-benchmark",
"version": "5.1.0",
"description": "A tool for benchmarking the render performance of React components.",
"author": "Roland Warmerdam (https://roland.codes)",
"keywords": [
"react",
"benchmark",
"chrome",
"webpack",
"production"
],
"repository": "Rowno/react-benchmark",
"license": "ISC",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"react-benchmark": "./lib/cli.js"
},
"files": [
"lib"
],
"scripts": {
"test": "yarn lint && ava",
"lint": "eslint '**/*.{js,jsx}'",
"prepare": "husky install"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@babel/core": "^7.13.8",
"@types/benchmark": "^2.1.0",
"@types/node": "^14.14.31",
"babel-loader": "^8.2.2",
"benchmark": "^2.1.4",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"get-port": "^5.0.0",
"html-webpack-plugin": "^5.2.0",
"humanize-number": "^0.0.2",
"lodash": "^4.17.11",
"meow": "^9.0.0",
"ora": "^5.1.0",
"pkg-dir": "^5.0.0",
"pluralize": "^8.0.0",
"puppeteer": "^13.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"resolve-from": "^5.0.0",
"source-map-loader": "^3.0.1",
"source-map-support": "^0.5.19",
"tempy": "^1.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.0.3",
"webpack": "^5.24.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@types/react": "^17.0.2",
"ava": "^4.3.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.22.0",
"execa": "^5.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.2.1"
},
"eslintConfig": {
"parser": "@babel/eslint-parser",
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"prettier"
],
"env": {
"es2017": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2018,
"requireConfigFile": false
},
"overrides": [
{
"files": [
"lib/client.js"
],
"env": {
"browser": true,
"node": false
}
}
],
"settings": {
"react": {
"version": "detect"
}
}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"ava": {
"timeout": "20s"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
}
}