-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
126 lines (126 loc) · 4.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
{
"name": "direct-uc",
"description": "Extensión web que permite a alumnos y funcionarios de la Pontificia Universidad Católica de Chile el ingreso directo a diferentes servicios ofrecidos por esta.",
"version": "1.3.1",
"repository": "git@github.com:wachunei/directUC.git",
"author": "Pedro Pablo Aste Kompen <wachunei@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint . --ext .jsx,.js",
"test": "jest",
"manifest": "node src/manifest/generate",
"manifest:chrome": "TARGET=chrome yarn manifest",
"manifest:firefox": "TARGET=firefox yarn manifest",
"bundle": "parcel src/manifest.json",
"bundle:chrome": "TARGET=chrome yarn bundle",
"bundle:firefox": "TARGET=firefox yarn bundle",
"clean": "rimraf ./dist",
"clean:build": "rimraf ./build",
"clean:build:chrome": "rimraf ./build/chrome",
"clean:build:firefox": "rimraf ./build/firefox",
"chrome": "TARGET=chrome yarn clean && yarn manifest:chrome && yarn bundle:chrome --no-hmr",
"firefox": "TARGET=firefox yarn clean && yarn manifest:firefox && yarn bundle:firefox --no-hmr",
"run:chrome": "web-ext run -t chromium --source-dir ./dist",
"run:firefox": "web-ext run -t firefox-desktop --source-dir ./dist",
"build": "parcel build src/manifest.json --no-content-hash",
"build:chrome": "yarn clean:build:chrome && yarn manifest:chrome && TARGET=chrome yarn build --dist-dir build/chrome",
"build:firefox": "yarn clean:build:firefox && yarn manifest:firefox && TARGET=firefox yarn build --dist-dir build/firefox",
"pack:chrome": "yarn web-ext build -s build/chrome -a releases/chrome",
"pack:firefox": "yarn web-ext build -s build/firefox -a releases/firefox",
"version": "auto-changelog -p --ignore-commit-pattern 'Bump.+from.+to|build\\((deps|deps-dev)\\)' -t ./.changelog/changelog-template.hbs && git add CHANGELOG.md",
"changelog:release": "auto-changelog --ignore-commit-pattern 'Bump.+from.+to|build\\((deps|deps-dev)\\)' --stdout -t ./.changelog/release-template.hbs",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@parcel/config-webextension": "^2.7.0",
"@parcel/transformer-image": "2.4.0",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^7.0.2",
"auto-changelog": "^2.3.0",
"babel-jest": "^28.1.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.2.5",
"jest-styled-components": "^7.0.8",
"lint-staged": ">=12.1.2",
"parcel": "^2.7.0",
"pinst": "^3.0.0",
"prettier": "^2.6.0",
"process": "^0.11.10",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"web-ext": "^7.2.0"
},
"dependencies": {
"chalk": "^4.1.2",
"fuse.js": "^6.4.6",
"keymirror": "^0.1.1",
"polished": "^4.1.3",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-is": "^17.0.2",
"react-redux": "^7.2.6",
"redux": "^4.1.1",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-persist-webextension-storage": "^1.0.2",
"redux-thunk": "^2.4.0",
"semver": "^7.3.5",
"styled-components": "^5.3.3",
"use-analytics": "^0.0.5",
"webext-redux": "^2.1.9",
"webextension-polyfill": "^0.8.0"
},
"resolutions": {
"node-forge": "0.10.0"
},
"jest": {
"testMatch": [
"**/__tests__/**/?(*.)+(spec|test).[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"setupFilesAfterEnv": [
"jest-styled-components"
],
"testEnvironment": "jsdom"
},
"babel": {
"presets": [
"@babel/preset-env",
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
],
"plugins": [
"@babel/plugin-proposal-nullish-coalescing-operator"
]
},
"browserslist": [
"last 5 Chrome versions",
"last 5 Firefox versions",
"last 5 Opera versions",
"last 5 Edge versions"
]
}