-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 2.02 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
{
"name": "admanager-viewability-insights",
"version": "1.0.0",
"description": "",
"author": "Markus Bordihn <[email protected]>",
"private": true,
"license": "MIT",
"devDependencies": {
"@material-design-icons/font": "^0.14.13",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-compat": "^6.0.1",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-prettier": "^5.2.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"scripts": {
"test": "npm run build:dev & npm run build",
"build": "webpack --config build/webpack.prod.js",
"build:dev": "webpack --config build/webpack.dev.js",
"dev": "webpack --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"upgrade": "npx npm-check -u --skip-unused",
"postupgrade": "npm install && npm update && npm prune && npm audit fix && npm run test",
"launch": "echo Launching app. Please wait ... && npm run launch:linux --silent || npm run launch:mac --silent || npm run launch:win --silent || npm run launch:win11 --silent",
"launch:linux": "google-chrome --load-and-launch-app=$PWD/dist --enable-logging --v=1 --no-first-run",
"launch:mac": "\"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome\" --load-and-launch-app=$PWD/dist --enable-logging --v=1 --no-first-run",
"launch:win": "echo && \"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\" --profile-directory=Default --load-and-launch-app=%CD%\\dist --enable-logging --v=1 --no-first-run",
"launch:win11": "echo && \"C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe\" --profile-directory=Default --load-and-launch-app=%CD%\\dist --enable-logging --v=1 --no-first-run"
}
}