-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 801 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 801 Bytes
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
{
"name": "ftf-detect-missing-adblocker",
"version": "1.0.0",
"description": "Warn your website's visitors if they don't have an ad-blocking browser extension installed.",
"main": "index.js",
"scripts": {
"start": "node server.js",
"build": ". ~/.nvm/nvm.sh && nvm use 12 && webpack",
"watch": ". ~/.nvm/nvm.sh && nvm use 12 && webpack --watch"
},
"author": "Stefan Bohacek",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"autoprefixer": "^9.8.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"extract-loader": "^5.1.0",
"file-loader": "^6.0.0",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}