-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
69 lines (69 loc) · 1.89 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
{
"name": "puppeteer-ide-extension",
"version": "0.0.8",
"description": "Develop, test and execute puppeteer scripts in browser's developer tools",
"files": [
"build/src"
],
"author": {
"name": "Gajanan Patil"
},
"homepage": "https://github.com/gajananpp/puppeteer-ide-extension/blob/main/README.md",
"repository": {
"url": "https://github.com/gajananpp/puppeteer-ide-extension"
},
"license": "MIT",
"keywords": [
"puppeteer",
"debugger",
"ide",
"extension",
"automation"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prelint": "npm run fix",
"lint": "gts lint",
"clean": "gts clean",
"compile": "webpack --config webpack.config.js",
"postcompile": "npm run cp-assets",
"dist": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"postdist": "npm run cp-assets",
"cp-assets": "cpx \"src/**/*.{html,json,png}\" dist",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"devDependencies": {
"@types/chrome": "^0.0.168",
"@types/node": "^14.11.2",
"@types/puppeteer-core": "^5.4.0",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"browserify": "^17.0.0",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"gts": "^3.1.0",
"sass": "^1.44.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"bootstrap": "^5.1.3",
"monaco-editor": "^0.30.1",
"puppeteer-core": "^13.0.0",
"puppeteer-extension-transport": "^0.0.6",
"react": "^17.0.2",
"react-bootstrap": "^2.1.0",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-select": "^5.2.2"
}
}