-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "aboutsync",
"private": true,
"version": "0.25",
"description": "About Sync Firefox addon",
"scripts": {
"build": "webpack --mode=production && web-ext build",
"dev": "webpack --mode=development --watch",
"lint": "web-ext lint --ignore-files=data/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-extensions/aboutsync.git"
},
"author": "Mark Hammond",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla-extensions/aboutsync/issues"
},
"webExt": {
"build": {
"overwriteDest": true,
"filename": "aboutsync.xpi"
},
"ignoreFiles": [
"src"
]
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dom-factories": "^1.0.2",
"react-inspector": "^6.0.1",
"react-toastify": "^9.1.3",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^8.3.0",
"css-loader": "^6.7.3",
"style-loader": "^3.3.1",
"web-ext": "^8.2.0",
"webpack": "^5.94.0",
"webpack-cli": "^4.10.0"
}
}