-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
31 lines (31 loc) · 927 Bytes
/
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
{
"name": "vivino-systembolaget",
"version": "1.0.2",
"main": "index.js",
"author": "Roman Faizullin <[email protected]>",
"license": "MIT",
"devDependencies": {
"npm-run-all": "^4.1.5",
"parcel": "^1.12.4"
},
"browserslist": [
"last 1 Chrome versions"
],
"scripts": {
"start": "run-p start:*",
"build": "run-s build:*",
"start:content": "parcel watch src/contentScript/contentScript.js -d public",
"start:bg": "parcel watch src/bgScript/bgScript.js -d public",
"build:content": "parcel build src/contentScript/contentScript.js -d public",
"build:bg": "parcel build src/bgScript/bgScript.js -d public"
},
"dependencies": {
"axios": "^0.21.1",
"axios-cache-adapter": "^2.5.0",
"axios-rate-limit": "^1.2.1",
"cheerio": "^1.0.0-rc.3",
"localforage": "^1.7.3",
"localforage-webextensionstorage-driver": "^2.0.0",
"lodash": "^4.17.15"
}
}