forked from heathj/tracy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·67 lines (67 loc) · 2.26 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
{
"name": "Tracy",
"license": "MIT License",
"repository": "github:heathj/tracy",
"description": "A tool designed to assist with finding all sinks and sources of a web application and display these results in a digestible manner.",
"version": "0.9.0",
"scripts": {
"start": "npx webpack --config webpack.config.js --mode development",
"build": "npx webpack --config webpack.config.js --mode production",
"compile-ext": "npx web-ext build --overwrite-dest -s ./build/",
"deploy-chrome": "npx chrome-webstore-upload-cli upload --source web-ext-artifacts/*.zip --extension-id lcgbimfijafcjjijgjoodgpblgmkckhn",
"deploy-firefox": "npx web-ext-submit --api-key \"$API_KEY\" --api-secret \"$API_SECRET\" -s build --id {9a38284d-6fc8-460a-b3b8-2378cfd30fe4} --api-url-prefix https://addons.mozilla.org/api/v4",
"deploy": "npm i;npm run build;npm run compile-ext;npm run deploy-chrome;npm run deploy-firefox"
},
"dependencies": {
"@fortawesome/fontawesome": "^1.1.4",
"@fortawesome/fontawesome-free-brands": "^5.0.8",
"@fortawesome/fontawesome-free-solid": "^5.0.8",
"@fortawesome/react-fontawesome": "0.0.18",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^6.0.1",
"react-syntax-highlighter": "^12.2.1",
"react-table": "^6.11.5",
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/core": "7.7.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-react": "7.7.4",
"babel-eslint": "^10.1.0",
"babel-loader": "8.0.6",
"chrome-webstore-upload-cli": "^1.2.0",
"copy-webpack-plugin": "5.0.5",
"css-loader": "3.2.0",
"eslint": "^6.8.0",
"file-loader": "4.3.0",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"style-loader": "1.0.0",
"web-ext-submit": "^4.1.0",
"webpack": "4.41.2",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "3.3.10"
},
"eslintConfig": {
"env": {
"browser": true,
"webextensions": true,
"node": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module"
}
},
"babel": {
"presets": [
"@babel/react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}