forked from Rowno/react-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 1.58 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
{
"name": "react-benchmark",
"version": "2.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",
"bin": {
"react-benchmark": "./lib/cli.js"
},
"files": [
"lib"
],
"scripts": {
"test": "xo && ava"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"@babel/core": "^7.1.6",
"babel-loader": "^8.0.4",
"benchmark": "^2.1.4",
"express": "^4.16.4",
"fs-extra": "^7.0.1",
"get-port": "^4.0.0",
"html-webpack-plugin": "^5.5.1",
"humanize-number": "^0.0.2",
"lodash": "^4.17.11",
"meow": "^12.0.1",
"ora": "^3.0.0",
"pkg-dir": "^3.0.0",
"pluralize": "^7.0.0",
"puppeteer": "^1.10.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"resolve-from": "^4.0.0",
"source-map-loader": "^0.2.4",
"tempy": "^0.2.1",
"webpack": "^5.83.1"
},
"devDependencies": {
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"ava": "^5.2.0",
"execa": "^1.0.0",
"husky": "^1.1.4",
"lint-staged": "^13.2.2",
"xo": "^0.54.2"
},
"xo": {
"space": true,
"semicolon": false,
"prettier": true,
"envs": [
"node",
"browser"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"xo --fix",
"git add"
]
}
}