-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
71 lines (71 loc) · 1.7 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
{
"name": "bundle-wizard",
"description": "Analyze the JavaScript loaded by a website",
"version": "1.6.1",
"main": "src/index.js",
"engines": {
"node": ">=10.0.0"
},
"bin": {
"bundle-wizard": "src/index.js"
},
"scripts": {
"test": "jest",
"start": "parcel src/client/index.html",
"build": "rm -rf dist; parcel build src/client/index.html",
"preversion": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/aholachek/bundle-wizard"
},
"author": "Alex Holachek",
"license": "ISC",
"keywords": [
"source-map",
"performance",
"entry point",
"bundle",
"javascript"
],
"dependencies": {
"chrome-launcher": "^0.13.4",
"enquirer": "^2.3.5",
"fs-extra": "^9.0.1",
"get-port": "^5.1.1",
"node-fetch": "^2.6.1",
"open": "^7.2.1",
"puppeteer-core": "^15.4.0",
"request": "^2.88.2",
"serve": "^11.3.2",
"serve-handler": "^6.1.3",
"source-map": "^0.7.3",
"source-map-explorer": "^2.5.0",
"static-server": "^2.2.1",
"tracium": "^0.2.1",
"uuid": "^8.3.0",
"yargs": "^16.0.3"
},
"peerDependencies": {
"puppeteer": "15.0.0"
},
"devDependencies": {
"d3": "5.16.0",
"eslint": "^7.9.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"js-levenshtein": "^1.1.6",
"lodash.clonedeep": "^4.5.0",
"lodash.throttle": "^4.1.1",
"parcel": "^1.12.4",
"prism-react-renderer": "^1.1.1",
"puppeteer": "^8.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-flip-toolkit": "^7.0.12",
"react-is": "16.13.1",
"sanitize.css": "11.0.1",
"sass": "^1.26.10",
"styled-components": "^5.2.0"
}
}