forked from SevenTV/Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.27 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
{
"name": "seventv",
"version": "2.0.0",
"description": "SevenTV Browser Extension",
"main": "index.ts",
"scripts": {
"start": "webpack --watch",
"lint": "tslint -p tsconfig.json",
"build": "webpack",
"build-prod-chromium": "webpack --config webpack.prod.config.js --env=MANIFEST_VERSION=2 --env=DIST=dist/chromium",
"build-stage-chromium": "webpack --config webpack.prod.config.js --env=MANIFEST_VERSION=2 --env=DIST=dist/chromium --env=STAGE=true",
"build-prod-firefox": "webpack --config webpack.prod.config.js --env=MANIFEST_VERSION=2 --env=DIST=dist/firefox",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnatoleAM/SevenTV.git"
},
"author": "Anatole",
"license": "MIT",
"bugs": {
"url": "https://github.com/AnatoleAM/SevenTV/issues"
},
"homepage": "https://github.com/AnatoleAM/SevenTV#readme",
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@hot-loader/react-dom": "^17.0.1",
"@svgr/webpack": "^5.5.0",
"@types/chrome": "0.0.130",
"@types/color": "^3.0.1",
"@types/mongodb": "^3.6.10",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-lazyload": "^3.1.0",
"@types/styled-components": "^5.1.7",
"@types/superagent": "^4.1.10",
"@types/twemoji": "^12.1.1",
"babel-loader": "^8.2.2",
"color": "^3.1.3",
"eslint": "^7.20.0",
"file-loader": "^6.2.0",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.17",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"tslint": "^6.1.3",
"typescript": "^4.1.5",
"url-loader": "^4.1.1",
"webpack": "^5.22.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "^5.0.0-beta.2",
"@material-ui/icons": "^5.0.0-beta.1",
"copy-webpack-plugin": "^7.0.0",
"nanoid": "^3.1.23",
"react": "^17.0.2",
"react-is": "^17.0.2",
"react-lazyload": "^3.2.0",
"rxjs": "^6.6.3",
"styled-components": "^5.2.1",
"superagent": "^6.1.0",
"twemoji": "^13.0.2"
}
}