This repository was archived by the owner on Jun 20, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.3 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.3 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
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
{
"name": "dot-shield",
"version": "0.1.0pre8",
"private": true,
"description": "Dot shield, a fast and efficient adblocker",
"main": "background.js",
"scripts": {
"prettier": "prettier --write .",
"ver": "node scripts/version",
"dev": "env webpack --config webpack/webpack.dev.js --watch",
"build": "rimraf dist && env webpack --config webpack/webpack.prod.js && env webpack --config webpack/webpack.prod.js",
"generate": "node scripts/generate",
"lint": "eslint .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dothq/adblock.git"
},
"keywords": [],
"author": "Dot Community <contact@dothq.co>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/dothq/adblock/issues"
},
"homepage": "https://dothq.co/",
"devDependencies": {
"@babel/preset-env": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"@types/chrome": "0.0.126",
"@types/color-convert": "^2.0.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.31",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"babel-plugin-react-css-modules": "^5.2.6",
"copy-webpack-plugin": "7.0.0",
"css-loader": "^5.0.2",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"file-loader": "^6.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "3.0.2",
"style-loader": "^2.0.0",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "5.0.3",
"ts-jest": "^26.5.4",
"ts-loader": "8.0.12",
"ts-node": "^9.1.1",
"typescript": "4.1.2",
"url-loader": "^4.1.1",
"web-ext-types": "3.2.1",
"webpack": "5.10.0",
"webpack-cli": "4.2.0",
"webpack-merge": "5.6.1",
"webpackbar": "^5.0.0-3",
"whatwg-fetch": "3.0.0",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@cliqz/adblocker": "^1.20.3",
"@wasm-tool/wasm-pack-plugin": "^1.3.3",
"chart.js": "^2.9.4",
"color-convert": "^2.0.1",
"contrast-color": "^1.0.1",
"node-vibrant": "3.1.6",
"psl": "^1.8.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-feather": "^2.0.9",
"svg-inline-react": "^3.2.0",
"uuid": "^8.3.2"
}
}