-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 2.85 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
{
"name": "deploysentinel-recorder",
"version": "0.7.1",
"description": "A browser extension that generates Cypress, Playwright and Puppeteer scripts automatically from your browser interactions.",
"license": "Apache-2.0",
"scripts": {
"build-chrome": "MANIFEST_VERSION=3 node utils/build.js && rm -f build/.DS_Store && zip -r build_chrome.zip build",
"build-ff": "MANIFEST_VERSION=2 node utils/build.js && rm -f build/.DS_Store && zip -jr build_ff.zip build",
"start-chrome": "MANIFEST_VERSION=3 node utils/webserver.js",
"start-ff": "MANIFEST_VERSION=2 node utils/webserver.js",
"bundle-source": "zip source.zip -r ./* -x ./node_modules/\\* -x .git/\\* -x .vscode/\\* -x \\*.log",
"test": "jest --coverage",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@hot-loader/react-dom": "^17.0.1",
"@types/chrome": "^0.0.154",
"@types/firefox": "^0.0.31",
"@types/lodash.debounce": "^4.0.6",
"@types/react": "^17.0.2",
"@types/react-copy-to-clipboard": "^5.0.1",
"@types/react-dom": "^17.0.1",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"react": "^17.0.1",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.13.0",
"react-syntax-highlighter": "^15.4.4"
},
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/preset-env": "^7.12.17",
"@babel/preset-react": "^7.12.13",
"@types/jest": "^27.0.2",
"@types/lodash.throttle": "^4.1.6",
"@types/react-syntax-highlighter": "^13.5.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.2",
"eslint": "^7.20.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"fs-extra": "^9.1.0",
"html-loader": "^2.1.0",
"html-webpack-plugin": "^5.2.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^12.3.7",
"loader": "^2.1.1",
"playwright": "^1.16.3",
"prettier": "^2.2.1",
"source-map-loader": "^2.0.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"to-string": "^0.2.0",
"ts-jest": "^27.0.7",
"ts-loader": "^8.0.17",
"ts-node": "^10.7.0",
"typescript": "^4.1.5",
"webpack": "^5.23.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}