-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.05 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
{
"name": "react-automation-profiler",
"version": "0.10.0",
"description": "Automated React profiling and data visualization using React's Profiler API, Puppeteer, and D3.",
"main": "lib/index.js",
"module": "lib/index.js",
"engines": {
"node": ">=14.0.0"
},
"engineStrict": true,
"files": [
"lib",
"README.md"
],
"bin": {
"rap": "./lib/bin.js"
},
"type": "module",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/rpivo/react-automation-profiler.git"
},
"keywords": [
"react",
"profiler",
"profile",
"puppeteer",
"automation",
"d3"
],
"author": "Ryan Pivovar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rpivo/react-automation-profiler/issues"
},
"homepage": "https://github.com/rpivo/react-automation-profiler#readme",
"scripts": {
"build": "bash ./sh/build.sh",
"clean": "bash ./sh/clean.sh",
"example": "bash ./sh/example.sh",
"diff": "bash ./sh/diff.sh",
"lint": "npx prettier --write .",
"pack": "npm pack",
"prepublishOnly": "npm run build",
"rap": "cd example && npx rap --page=http://localhost:3000/three-buttons --watch"
},
"dependencies": {
"browser-sync": "^2.27.4",
"express": "^4.17.1",
"html-minifier-terser": "^5.1.1",
"js-yaml": "^4.1.0",
"jsdom": "^18.0.1",
"puppeteer": "^10.1.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/browser-sync": "^2.26.3",
"@types/d3": "^7.0.0",
"@types/express": "^4.17.13",
"@types/html-minifier-terser": "^5.1.1",
"@types/js-yaml": "^4.0.3",
"@types/jsdom": "^16.2.12",
"@types/node": "^15.14.1",
"@types/nodemon": "^1.19.0",
"@types/puppeteer": "^5.4.3",
"@types/react": "^17.0.13",
"@types/yargs": "^17.0.2",
"d3": "^7.0.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"rollup": "^2.52.7",
"tslib": "^2.3.0",
"typescript": "^4.3.5",
"yargs": "^17.0.1"
}
}