forked from ntv1000/reddit-submission-finder
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.48 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
{
"name": "busca.afk",
"version": "1.3.0",
"description": "busca.afk extension to search links on reddit or more",
"main": "js/script.js",
"scripts": {
"serve": "nodemon index.js",
"start": "web-ext run",
"start:macos": "web-ext run -p default --firefox=/Applications/FirefoxDeveloperEdition.app/Contents/MacOS/firefox-bin",
"lint": "eslint src/**/*.js",
"lint:web": "web-ext lint",
"build": "webpack --watch --progress",
"build:chrome": "crx pack dist -o build/ligo.crx",
"build:fox": "webpack -p && web-ext build",
"sign:fox": "env-cmd ./.env web-ext sign",
"build:prod": "webpack -p",
"precommit": "lint-staged"
},
"repository": "https://github.com/afk-mcz/reddit-submission-finder",
"keywords": [
"extension",
"arlefreak",
"afk",
"ligo",
"link"
],
"author": "AFK",
"license": "MIT",
"bugs": {
"url": "https://github.com/afk-mcz/busca/issues"
},
"homepage": "https://github.com/afk-mcz/busca",
"lint-staged": {
"src/**/*.{js,json,css}": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"devDependencies": {
"crx": "^4.0.1",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"express": "^4.16.4",
"husky": "^1.3.1",
"is": "^3.2.1",
"lint-staged": "^8.1.4",
"nodemon": "^1.18.10",
"prettier": "1.16.4",
"webpack-cli": "^3.2.3",
"webpack-dev-middleware": "^3.6.0"
},
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-syntax-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"archiver": "^3.0.0",
"autoprefixer": "^9.4.7",
"babel-loader": "^8.0.5",
"babel-plugin-transform-export-extensions": "^6.22.0",
"choo": "^6.6.0",
"choo-devtools": "^2.2.0",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"dotenv": "^6.2.0",
"env-cmd": "^8.0.2",
"eslint-config-prettier": "^4.0.0",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"style-loader": "^0.23.1",
"urijs": "^1.19.0",
"web-ext": "^2.9.3",
"webpack": "^4.29.5"
},
"peerDependencies": {}
}