This repository has been archived by the owner on Sep 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
145 lines (145 loc) Β· 5.47 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "virgo",
"version": "0.3.1",
"description": "Virgo - A crowdfuzz approach for the desktop.",
"keywords": [
"cluster",
"fuzzing",
"utility",
"bounty",
"bugs"
],
"homepage": "https://github.com/mozillasecurity/virgo",
"bugs": {
"url": "https://github.com/mozillasecurity/virgo/issues"
},
"license": "MPL-2.0",
"author": "Christoph Diehl <[email protected]>",
"repository": "github:mozillasecurity/virgo",
"private": true,
"engines": {
"node": ">=11"
},
"main": "build/app/main/main.js",
"scripts": {
"\n# Development": "",
"start": "cross-env NODE_ENV=development run-p -r parcel:launch electron:launch",
"electron:launch": "run-s parcel:main electron:start",
"electron:start": "cross-env ELECTRON_START_URL=http://localhost:3000 electron --enable-logging --remote-debugging-port=9223 .",
"parcel:launch": "node configs/parcel/bundler.js",
"\n# Production": "",
"build": "run-s parcel:main parcel:renderer",
"release": "node configs/electron/builder.js",
"parcel:main": "parcel build src/main/main.js --out-dir build/app/main --out-file=main --target=electron",
"parcel:renderer": "parcel build src/renderer/index.html --log-level 3 --no-cache --public-url ./ --out-dir build/app/renderer/production --target=electron",
"\n# Debug": "",
"debug:electron": "electron --inspect-brk=9222 --enable-logging --remote-debugging-port=9223 .",
"debug:launch": "run-p parcel:main parcel:launch debug:electron",
"\n# Test": "",
"jest": "cross-env NODE_ENV=test CI=true jest --config configs/jest/jest.config.js --colors",
"test": "run-s build jest",
"test:coverage": "run-s build 'jest -- --coverage'",
"test:coverage:upload": "codecov -f build/coverage/coverage-final.json -y configs/codecov/codecov.yml --disable=gcov",
"test:snapshots": "npm run jest -- -u",
"\n# Lint": "",
"eslint": "eslint --config configs/eslint/eslintrc.js --ignore-path configs/eslint/eslintignore --color",
"stylelint": "stylelint --config configs/stylelint/stylelint.config.js --formatter=verbose --color",
"lint": "run-s -c typecheck lint:js lint:css",
"lint:js": "npm run eslint -- --fix 'src/**/*.{js,jsx}'",
"lint:css": "npm run stylelint -- 'src/**/*.{css,scss}' --fix",
"\n# Format": "",
"prettier": "prettier --config prettier.config.js --ignore-path configs/prettier/prettierignore",
"format": "run-s -c format:js format:css",
"format:js": "npm run prettier -- --write 'src/**/*.{js,jsx}'",
"format:css": "npm run prettier -- --write './src/**/*.{css,scss}'",
"\n# Documentation": "",
"docs": "esdoc -c configs/esdoc/esdoc.json",
"\n# Flow": "",
"typecheck": "flow check --quiet --color=always --flowconfig-name configs/flow/flowconfig",
"typecheck:init": "flow-typed install --overwrite",
"typecheck:update": "flow-typed update",
"typecheck:upgrade": "flow-upgrade",
"typecheck:coverage": "flow-coverage-report --config configs/flow/flowcoverage.json",
"\n# Packages": "",
"updates": "ncu -t"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --config configs/lintstaged/lintstaged.json"
}
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@jest-runner/electron": "2.0.2",
"@sentry/cli": "^1.46.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-plugin-dynamic-import-node": "^2.3.0",
"babel-plugin-styled-components": "^1.10.6",
"codecov": "^3.5.0",
"cross-env": "^5.2.0",
"devtron": "^1.4.0",
"electron": "^5.0.7",
"electron-builder": "^21.0.15",
"electron-devtools-installer": "^2.2.4",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-jsx-plugin": "^1.0.0",
"esdoc-node": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-flowtype": "^3.11.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.9.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"express": "^4.17.1",
"flow-bin": "^0.102.0",
"flow-coverage-report": "^0.6.1",
"flow-typed": "^2.6.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"jest-config": "^24.8.0",
"lint-staged": "^9.2.0",
"npm-check-updates": "^3.1.20",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"prettier": "^1.18.2",
"prettier-eslint-cli": "^5.0.0",
"react-test-renderer": "^16.8.6",
"regenerator-runtime": "^0.13.2",
"spectron": "^7.0.0",
"stylelint": "^10.1.0",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-prettier": "^1.1.1"
},
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@mozillasecurity/octo": "^2.0.0",
"@sentry/electron": "^0.17.1",
"app-root-path": "^2.2.1",
"axios": "^0.19.0",
"dockerode": "^2.5.8",
"electron-log": "^3.0.6",
"electron-store": "^4.0.0",
"electron-updater": "^4.1.2",
"ini": "^1.3.5",
"lodash": "^4.17.14",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"redux": "^4.0.4",
"styled-components": "^4.3.2"
}
}