This repository has been archived by the owner on Jun 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 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
{
"name": "approve-pr-with-image",
"version": "2.0.0",
"description": "Chrome extension to approve pull request with LGTM image",
"main": "index.js",
"dependencies": {
"@material-ui/core": "^4.9.12",
"@material-ui/icons": "^4.9.1",
"@reduxjs/toolkit": "^1.3.5",
"@types/react-lazyload": "^2.6.0",
"beautiful-react-hooks": "^0.23.1",
"react": "^16.13.1",
"react-content-loader": "^5.0.4",
"react-dom": "^16.13.1",
"react-lazyload": "^2.6.7",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"styled-components": "^5.1.0"
},
"devDependencies": {
"@types/chrome": "^0.0.106",
"@types/clipboard": "^2.0.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/react-redux": "^7.1.7",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"ts-loader": "^7.0.2",
"typescript": "^3.8.3",
"typescript-plugin-styled-components": "^1.4.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"scripts": {
"webpack": "webpack --display-error-details",
"build": "rm -rf dist build && mkdir dist && webpack --display-error-details && mkdir -p build/approve-pr-with-image && cp -r dist icons manifest.json static build/approve-pr-with-image/",
"build:production": "yarn build && cd build && zip -r approve-pr-with-image.zip approve-pr-with-image",
"build:ci": "eslint src/**/*.ts && webpack --display-error-details",
"start": "webpack -d"
},
"repository": "git+https://github.com/mizoguche/approve-pr-with-image.git",
"author": "Michiaki Mizoguchi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mizoguche/approve-pr-with-image/issues"
},
"homepage": "https://github.com/mizoguche/approve-pr-with-image"
}