-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.86 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
{
"name": "bathroom-at-a-party",
"version": "0.1.0",
"description": "Browsing the internet but you are in a bathroom at a party",
"private": true,
"license": "MIT",
"repository": "https://github.com/DropSnorz/BathroomAtAParty.git",
"author": {
"name": "Arthur Poiret"
},
"engines": {
"node": ">=10.0.0",
"yarn": ">=1.0.0"
},
"scripts": {
"dev:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome webpack --watch",
"dev:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox webpack --watch",
"dev:opera": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=opera webpack --watch",
"build:chrome": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=chrome webpack",
"build:firefox": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=firefox webpack",
"build:opera": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=opera webpack",
"build": "yarn run build:chrome && yarn run build:firefox && yarn run build:opera",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"advanced-css-reset": "^1.2.2",
"emoji-log": "^1.0.2",
"webext-base-css": "^1.2.0",
"webextension-polyfill": "^0.7.0"
},
"devDependencies": {
"@abhijithvijayan/eslint-config": "2.5.6",
"@abhijithvijayan/eslint-config-airbnb": "^1.0.2",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-destructuring": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"autoprefixer": "^10.0.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.3.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.3.1",
"cross-env": "^7.0.2",
"css-loader": "^5.0.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"filemanager-webpack-plugin": "^3.0.0-alpha.7",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^1.3.1",
"node-sass": "^7.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss": "^8.1.7",
"postcss-loader": "^4.0.4",
"prettier": "^2.1.2",
"resolve-url-loader": "^5.0.0",
"sass-loader": "^10.1.0",
"terser-webpack-plugin": "^4.2.3",
"webpack": "^5.75.0",
"webpack-cli": "^4.2.0",
"webpack-extension-reloader": "^1.1.4",
"wext-manifest-loader": "^2.2.1",
"wext-manifest-webpack-plugin": "^1.2.1"
}
}