-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
47 lines (47 loc) · 1.46 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
{
"name": "season-pass-extension",
"version": "1.1.0",
"main": "index.js",
"repository": "git@github.com:joshhunt/season-pass-extension.git",
"author": "Josh Hunt <joshhunt@users.noreply.github.com>",
"license": " AGPL-3.0-only",
"scripts": {
"dev": "node manifestIcons.js && webpack --mode=development --watch",
"build": "rimraf dist && node manifestIcons.js && webpack --mode=production",
"package": "web-ext build",
"deploy": "yarn build && yarn package"
},
"dependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@d2api/manifest-web": "^1.0.6",
"@types/debug": "^4.1.7",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/webextension-polyfill": "^0.8.2",
"babel-loader": "^8.2.3",
"bestzip": "^2.2.0",
"bungie-api-ts": "^4.14.0",
"copy-webpack-plugin": "^10.2.3",
"core-js": "^3.20.3",
"css-loader": "^6.6.0",
"debug": "^4.3.3",
"fetch-intercept": "^2.4.0",
"http-request-mock": "^1.5.9",
"image-size": "^1.0.1",
"inter-ui": "^3.19.3",
"mini-css-extract-plugin": "^2.5.3",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.5.5",
"web-ext": "^6.6.0",
"webextension-polyfill": "^0.8.0",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2",
"whatwg-fetch": "^3.6.2"
}
}