-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "adblocker-fingerprint-demos",
"version": "1.0.0",
"license": "MIT",
"private": true,
"browserslist": [
"> 0.5%",
"not IE < 12"
],
"scripts": {
"start": "webpack serve --mode development",
"build": "webpack --mode production",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore --max-warnings 0 .",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"preact": "^10.5.13",
"react-responsive-carousel": "^3.2.18",
"tslib": "^2.3.0"
},
"devDependencies": {
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"autoprefixer": "^10.2.6",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^1.6.0",
"postcss": "^8.3.5",
"postcss-loader": "^6.1.0",
"prettier": "^2.3.1",
"terser-webpack-plugin": "^5.1.3",
"ts-loader": "^9.2.3",
"typescript": "^4.3.4",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}