-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.16 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.16 KB
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
{
"name": "browser-extension-template",
"version": "0.0.0",
"description": "Fully featured cross platform browser extension template using Webpack/Babel/React",
"author": "Samuel Jun",
"main": "index.js",
"license": "ISC",
"scripts": {
"build": "webpack --mode=production && node ./scripts/build-zip.js",
"lint": "eslint src",
"lint-fix": "eslint --fix src",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch",
"watch-firefox": "web-ext run --source-dir ./dist"
},
"dependencies": {
"core-js": "^3.6.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"webextension-polyfill": "^0.6.0"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^4.2.1",
"eslint": "^7.6.0",
"eslint-plugin-react": "^7.20.5",
"html-webpack-plugin": "^4.3.0",
"style-loader": "^1.2.1",
"web-ext": "^5.0.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}